symphony-forge 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +173 -0
- package/README.md +138 -0
- package/dist/index.js +1459 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "symphony-forge",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "git+https://github.com/broomva/symphony-forge.git"
|
|
7
|
+
},
|
|
8
|
+
"license": "Apache-2.0",
|
|
9
|
+
"description": "Scaffold next-forge projects with a composable control metalayer for AI agent governance",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"next-forge",
|
|
12
|
+
"nextjs",
|
|
13
|
+
"turborepo",
|
|
14
|
+
"scaffold",
|
|
15
|
+
"cli",
|
|
16
|
+
"metalayer",
|
|
17
|
+
"ai-agent",
|
|
18
|
+
"governance",
|
|
19
|
+
"skills"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"symphony-forge": "dist/index.js",
|
|
26
|
+
"next-forge": "dist/index.js"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist/index.js"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "turbo build",
|
|
33
|
+
"dev": "turbo dev",
|
|
34
|
+
"check": "ultracite check",
|
|
35
|
+
"typecheck": "turbo typecheck",
|
|
36
|
+
"fix": "ultracite fix",
|
|
37
|
+
"test": "turbo test",
|
|
38
|
+
"analyze": "turbo analyze",
|
|
39
|
+
"translate": "turbo translate",
|
|
40
|
+
"boundaries": "turbo boundaries",
|
|
41
|
+
"bump-deps": "bunx npm-check-updates --deep -u && bun install",
|
|
42
|
+
"bump-ui": "bunx shadcn@latest add --all --overwrite -c packages/design-system",
|
|
43
|
+
"migrate": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma migrate dev",
|
|
44
|
+
"migrate:deploy": "cd packages/database && bunx prisma generate && bunx prisma migrate deploy",
|
|
45
|
+
"db:push": "cd packages/database && bunx prisma format && bunx prisma generate && bunx prisma db push",
|
|
46
|
+
"clean": "git clean -xdf node_modules",
|
|
47
|
+
"release": "npm publish",
|
|
48
|
+
"prepare": "[ -n \"$CI\" ] || [ -n \"$VERCEL\" ] || scripts/harness/install-hooks.sh"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@auto-it/first-time-contributor": "^11.3.6",
|
|
52
|
+
"@biomejs/biome": "2.4.7",
|
|
53
|
+
"@clerk/backend": "^3.2.0",
|
|
54
|
+
"@clerk/testing": "^2.0.4",
|
|
55
|
+
"@playwright/test": "^1.58.2",
|
|
56
|
+
"@repo/typescript-config": "workspace:*",
|
|
57
|
+
"@turbo/gen": "^2.8.14",
|
|
58
|
+
"@types/node": "^25.5.0",
|
|
59
|
+
"dotenv": "^17.3.1",
|
|
60
|
+
"tsup": "^8.5.1",
|
|
61
|
+
"turbo": "^2.8.14",
|
|
62
|
+
"typescript": "^5.9.3",
|
|
63
|
+
"ultracite": "7.2.5",
|
|
64
|
+
"vitest": "^4.0.18"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
},
|
|
69
|
+
"packageManager": "bun@1.3.10",
|
|
70
|
+
"dependencies": {
|
|
71
|
+
"@clack/prompts": "^1.1.0",
|
|
72
|
+
"commander": "^14.0.3",
|
|
73
|
+
"nypm": "^0.6.5",
|
|
74
|
+
"vercel": "^50.32.5"
|
|
75
|
+
},
|
|
76
|
+
"overrides": {
|
|
77
|
+
"parse5": "^7.2.1"
|
|
78
|
+
},
|
|
79
|
+
"type": "module",
|
|
80
|
+
"workspaces": [
|
|
81
|
+
"apps/*",
|
|
82
|
+
"packages/*"
|
|
83
|
+
]
|
|
84
|
+
}
|