-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.39 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.39 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "userscripts",
"version": "1.0.0",
"description": "Some scripts that might be useful.",
"scripts": {
"build": "node build.js",
"build:all": "node build.js all",
"build:list": "node build.js list",
"dev": "node build.js x-downloader --dev",
"dev:watch": "node build.js watch",
"watch": "node build.js watch",
"watch:prod": "node build.js watch --prod",
"lint": "eslint src/ --ext .ts,.tsx,.js",
"lint:fix": "eslint src/ --ext .ts,.tsx,.js --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\"",
"prepare": "husky"
},
"keywords": [
"userscript",
"typescript"
],
"author": "mengshouer",
"license": "GPL-3.0",
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@types/node": "^24.3.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-legacy": "^7.2.1",
"eslint": "^8.0.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"rollup-plugin-userscript-metablock": "^0.4.3",
"typescript": "^5.0.0",
"vite": "^7.1.5"
},
"dependencies": {
"@preact/signals-core": "^1.12.1",
"goober": "^2.1.16",
"preact": "^10.27.2"
}
}