-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.54 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": "@thunderstrikeco/create",
"version": "0.1.1",
"description": "Vite+ organization template picker for @thunderstrikeco.",
"license": "UNLICENSED",
"type": "module",
"files": [
"README.md",
"templates"
],
"publishConfig": {
"access": "restricted"
},
"scripts": {
"verify:manifest": "vp create @thunderstrikeco --no-interactive",
"verify:web-react": "vp create @thunderstrikeco:web-react --no-interactive",
"verify:demo": "vp create @thunderstrikeco:demo --no-interactive",
"verify:tanstack-start-solid": "vp create @thunderstrikeco:tanstack-start-solid --no-interactive --directory .tmp/tanstack-start-solid --no-hooks --no-git --approve-builds --verbose",
"start:registry": "pnpm dlx verdaccio --config .verdaccio/config.yaml",
"registry:add-user": "npm add-user --registry http://localhost:4873",
"publish:local": "pnpm publish --registry http://localhost:4873 --access restricted --no-git-checks"
},
"createConfig": {
"templates": [
{
"name": "tanstack-start-solid",
"description": "TanStack Start + Solid app with Content Collections, Formisch, Tailwind, icons, and great authoring DX",
"template": "./templates/tanstack-start-solid"
},
{
"name": "demo",
"description": "Bundled demo template included in this package",
"template": "./templates/demo"
},
{
"name": "monorepo",
"description": "TODO: Monorepo starter",
"template": "./templates/monorepo",
"monorepo": true
}
]
}
}