forked from PreMiD/Activities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 763 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 763 Bytes
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
{
"name": "activities",
"type": "module",
"private": true,
"license": "MPL-2.0",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"prepare": "cd cli && npm ci && npm run build && cd .. && npm ci --ignore-scripts",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"dev": "pmd dev"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-plugin-format": "^1.4.0",
"eslint-plugin-json-schema-validator": "^6.0.3",
"pmd": "file:cli",
"premid": "file:premid",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}