-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 822 Bytes
/
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
{
"name": "retroload",
"private": true,
"workspaces": [
"retroload-lib",
"retroload"
],
"scripts": {
"build": "npm run updateVersion && tsc --build -v && chmod +x retroload/dist/esm/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": "^9.13.0",
"@stylistic/eslint-plugin-ts": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.11",
"eslint": "^9.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
}
}