-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
42
43
44
45
46
47
{
"name": "create-greasify",
"description": "Create a greasify userscript project.",
"version": "1.0.1",
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"bin": {
"create-greasify": "./dist/bin.js"
},
"files": [
"dist",
"templates",
"templates/base/.gitignore",
"!templates/*/node_modules",
"!templates/*/dist"
],
"keywords": [
"cli",
"create",
"vite",
"userscript",
"templates"
],
"scripts": {
"start": "pnpm build && node dist/bin.js",
"dev": "tsup --watch",
"build": "tsup",
"build:templates": "pnpm build && pnpm -r --filter=./templates/* run build",
"format": "prettier --write src",
"format:templates": "pnpm -r --filter=./templates/* run format",
"type-check": "tsc --noEmit",
"create-greasify": "pnpm build && node dist/bin.js"
},
"devDependencies": {
"@crashmax/prettier-config": "5.0.2",
"@crashmax/tsconfig": "2.2.0",
"@types/node": "22.13.1",
"@types/prompts": "2.4.9",
"tsup": "8.3.6",
"typescript": "5.7.3"
},
"dependencies": {
"prompts": "2.4.2"
}
}