-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 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
{
"name": "@spawn-dock/create",
"version": "1.0.0-beta.4",
"type": "module",
"description": "SpawnDock bootstrap CLI for local TMA projects",
"license": "ISC",
"packageManager": "pnpm@10.32.1",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/SpawnDock/create.git"
},
"homepage": "https://github.com/SpawnDock/create-spawn-dock#readme",
"bugs": {
"url": "https://github.com/SpawnDock/create/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"README.md",
"bin",
"packages/app/dist",
"packages/app/template-nextjs-overlay"
],
"bin": {
"spawndock-create": "bin/spawndock-create.mjs"
},
"scripts": {
"prepare": "node ./scripts/prepare.mjs",
"build": "pnpm --filter @spawn-dock/create-app build",
"check": "pnpm --filter @spawn-dock/create-app check",
"test": "pnpm --filter @spawn-dock/create-app test",
"typecheck": "pnpm --filter @spawn-dock/create-app typecheck",
"start": "pnpm --filter @spawn-dock/create-app start"
},
"dependencies": {
"effect": "^3.21.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/node": "^24.12.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}