-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 880 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": "yslv-userscript",
"private": true,
"version": "2.1.12",
"type": "module",
"scripts": {
"dev": "vite build --watch",
"build:userscript": "vite build",
"build:ext": "node scripts/build-extensions.mjs",
"build": "npm run build:userscript && npm run build:ext",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,css}\"",
"postinstall": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"archiver": "^7.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.1"
}
}