-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1 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
{
"name": "@author/monorepo",
"type": "module",
"private": true,
"workspaces": [
"packages/**"
],
"scripts": {
"build": "npm run build -ws --if-present",
"docs": "typedoc",
"docs-watch": "npm run docs -- --watch",
"clean": "rm -rf ./docs/typedoc/ ./node_modules && rm -rf ./package-lock.json",
"test": "vitest --coverage",
"test-ci": "npm run test -- run",
"test-ui": "npm run test -- --ui",
"test-watch": "npm run test -- --watch",
"lint": "npm run eslint && npm run publint",
"fix": "npm run eslint -- --fix",
"eslint": "eslint .",
"publint": "npm run publint -ws"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@stylistic/eslint-plugin": "^3.0.1",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/ui": "^3.0.4",
"eslint": "^9.19.0",
"eslint-plugin-promise": "^7.2.1",
"publint": "^0.3.2",
"typedoc": "^0.27.6",
"typescript": "5.7.3",
"typescript-eslint": "^8.22.0",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.0.4"
}
}