-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
{
"name": "userscripts",
"description": "A collection of user scripts for various purposes.",
"version": "0.0.23",
"type": "module",
"private": true,
"author": "https://rxliuli.com/",
"license": "GPL-3.0-only",
"scripts": {
"build": "tsx src/build.ts",
"test": "vitest run",
"postinstall": "simple-git-hooks"
},
"workspaces": [
"packages/*"
],
"prettier": "@liuli-util/prettier-standard-config",
"devDependencies": {
"@liuli-util/prettier-standard-config": "^0.3.0",
"@types/node": "^22.15.30",
"@types/query-selector-shadow-dom": "^1.0.4",
"@types/tampermonkey": "^5.0.4",
"@vitest/browser": "^3.2.2",
"bundle-require": "^5.1.0",
"chokidar": "^5.0.0",
"lint-staged": "^16.2.1",
"playwright": "^1.60.0",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.13.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-node": "^3.2.4",
"vite-plugin-monkey": "^7.1.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"vitest-browser-react": "^0.2.0",
"zx": "^8.5.5"
},
"dependencies": {
"@medv/finder": "^4.0.2",
"@rxliuli/vista": "^0.4.5",
"css-what": "^7.0.0",
"es-toolkit": "^1.41.0",
"query-selector-shadow-dom": "^1.0.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,css,vue}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.15.1+sha512.34e538c329b5553014ca8e8f4535997f96180a1d0f614339357449935350d924e22f8614682191264ec33d1462ac21561aff97f6bb18065351c162c7e8f6de67"
}