-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "create-appncy",
"version": "1.1.85",
"description": "Create projects as goncy would",
"main": "index.mjs",
"bin": {
"create-appncy": "dist/index.js"
},
"files": [
"dist/**/*"
],
"keywords": [
"react",
"goncy",
"next.js",
"shadcn",
"tailwindcss"
],
"author": "goncy",
"license": "ISC",
"dependencies": {
"glob": "^10.3.5",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"yargs": "^17.7.2"
},
"scripts": {
"build": "tsup",
"registry": "shadcn build",
"start": "node dist/index.js",
"dev": "tsup --watch",
"bump": "pnpm run build && pnpm run registry && git add -A . && git commit -m 'bump' && pnpm version patch && git tag latest --force && git push origin main --tags --force && pnpm publish --tag latest --force"
},
"devDependencies": {
"shadcn": "^2.9.3",
"@types/node": "^20.11.0",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.32",
"prettier": "^3.0.3",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}