-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
38 lines (38 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"private": true,
"scripts": {
"alex": "alex .",
"attw": "npx lerna run attw --stream",
"build": "npx lerna run build --stream",
"clean": "npx lerna clean",
"lint": "npm run lint:types && npm run lint:js && npm run prettier",
"lint:js": "npm run lint:js --if-present --workspaces",
"lint:types": "npm run lint:types --if-present --workspaces",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"publish": "npx lerna publish",
"prelint": "npm run build",
"pretest": "npm run build",
"test": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/oas.git"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"@vitest/coverage-v8": "^2.1.3",
"alex": "^11.0.1",
"eslint": "^8.57.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"vitest": "^2.1.3"
},
"prettier": "@readme/eslint-config/prettier"
}