-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 791 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 791 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
{
"name": "retroload",
"private": true,
"workspaces": [
"retroload-lib",
"retroload"
],
"scripts": {
"build": "npm run updateVersion && tsc --build -v && chmod +x retroload/dist/retroload*.js",
"clean": "rm -rf retroload/dist && rm -rf retroload-lib/dist && tsc --build --clean",
"build-watch": "tsc --build -v --watch",
"prepublishOnly": "npm run build",
"updateVersion": "npm run updateVersion --ws",
"test": "npm run test --ws",
"lint": "npm run lint --ws"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
}
}