-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
57
58
{
"name": "userscripts",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@9.0.4",
"description": "userscripts",
"author": {
"name": "xiaohuohumax",
"url": "https://github.com/xiaohuohumax"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xiaohuohumax/userscripts.git"
},
"keywords": [
"typescript",
"monorepo",
"userscripts"
],
"scripts": {
"build": "pnpm build:packages && pnpm build:apps && pnpm build:libs",
"build:apps": "rimraf dist && pnpm -r --filter=./apps/** --stream run build",
"build:packages": "pnpm -r --filter=./packages/** --stream run build",
"build:libs": "pnpm -r --filter=./libs/** --stream run build",
"commit": "git add . && cz",
"release": "pnpm build:packages && pnpm build:libs && changeset publish",
"postinstall": "simple-git-hooks",
"changeset": "changeset",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.10.2",
"commitizen": "^4.3.1",
"cz-git": "^1.11.0",
"radash": "^12.1.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"vite": "^6.0.6",
"vite-plugin-monkey": "^5.0.3"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit $1",
"pre-commit": "npm run lint:fix && git add ."
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}