-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.29 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "symphony-forge",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/broomva/symphony-forge.git"
},
"license": "Apache-2.0",
"description": "Scaffold next-forge projects with a composable control metalayer for AI agent governance",
"keywords": [
"next-forge",
"nextjs",
"turborepo",
"scaffold",
"cli",
"metalayer",
"ai-agent",
"governance",
"skills"
],
"publishConfig": {
"provenance": true,
"access": "public"
},
"bin": {
"symphony-forge": "dist/index.js",
"next-forge": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "ultracite check",
"typecheck": "turbo typecheck",
"fix": "ultracite fix",
"test": "turbo test",
"analyze": "turbo analyze",
"translate": "turbo translate",
"boundaries": "turbo boundaries",
"bump-deps": "bunx npm-check-updates --deep -u && bun install",
"bump-ui": "bunx shadcn@latest add --all --overwrite -c packages/design-system",
"migrate": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma migrate dev",
"migrate:deploy": "cd packages/database && bunx prisma generate && bunx prisma migrate deploy",
"db:push": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma db push",
"clean": "git clean -xdf node_modules",
"release": "npm publish",
"prepare": "[ -n \"$CI\" ] || [ -n \"$VERCEL\" ] || scripts/harness/install-hooks.sh"
},
"devDependencies": {
"@auto-it/first-time-contributor": "^11.3.6",
"@biomejs/biome": "2.4.7",
"@clerk/backend": "^3.2.0",
"@clerk/testing": "^2.0.4",
"@repo/typescript-config": "workspace:*",
"@turbo/gen": "^2.8.14",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"tsup": "^8.5.1",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"ultracite": "7.3.2",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.10",
"dependencies": {
"@clack/prompts": "^1.1.0",
"commander": "^14.0.3",
"nypm": "^0.6.5",
"vercel": "^50.32.5"
},
"overrides": {
"parse5": "^7.2.1"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
]
}