-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.18 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "userscripts",
"private": true,
"description": "personal userscripts",
"type": "module",
"scripts": {
"log": "pnpm changeset",
"bootstrap": "tsx scripts/bootstrap",
"build": "tsx scripts/build.ts",
"release": "pnpm changeset version && pnpm i && git add . -A && git commit -m \"chore: release\" && pnpm changeset tag && git push && git push --tags",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IronKinoko/userscripts.git"
},
"keywords": [],
"author": "IronKinoko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/IronKinoko/userscripts/issues"
},
"homepage": "https://github.com/IronKinoko/userscripts#readme",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/fs-extra": "^11.0.3",
"@types/inquirer": "^9.0.6",
"@types/jquery": "^3.5.25",
"@types/lodash-es": "^4.17.10",
"bocchi": "^1.1.3",
"chalk": "^5.3.0",
"fs-extra": "^11.1.1",
"globby": "^13.2.2",
"husky": "^8.0.3",
"inquirer": "^9.2.11",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tsx": "^4.6.2",
"typescript": "^5.2.2"
}
}