-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 813 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
{
"name": "retroload",
"private": true,
"workspaces": [
"retroload-lib",
"retroload"
],
"scripts": {
"build": "tsx scripts/version.ts && 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": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"tsx": "^4.23.1",
"typescript": "5.9",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}