-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.59 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.59 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@automagik/forge",
"version": "0.8.7-rc.40",
"description": "The Vibe Coding++™ platform for human-AI development. Kanban board for AI agents with git worktree isolation.",
"keywords": [
"ai",
"agent",
"claude",
"gemini",
"cursor",
"kanban",
"task-management",
"mcp",
"vibe-coding",
"automation",
"git-worktree",
"developer-tools",
"coding-assistant",
"model-context-protocol",
"agent-orchestration"
],
"author": "Namastex Labs",
"license": "MIT",
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",
"private": true,
"bin": {
"automagik-forge": "npx-cli/bin/cli.js",
"forge": "npx-cli/bin/cli.js"
},
"files": [
"npx-cli/bin/cli.js",
"npx-cli/dist/**"
],
"scripts": {
"lint": "npm run frontend:lint && npm run backend:lint",
"format": "cargo fmt --all && cd frontend && npm run format",
"check": "npm run frontend:check && npm run backend:check",
"dev": "export FRONTEND_PORT=$(node scripts/setup-dev-environment.js frontend) && export BACKEND_PORT=$(node scripts/setup-dev-environment.js backend) && concurrently \"npm run backend:dev:watch\" \"npm run frontend:dev\"",
"test:npm": "bash scripts/test/test-package.sh",
"test:all": "bash scripts/test/test-package-ci.sh",
"test:ci": "bash scripts/test/test-package-ci.sh",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:playwright:headed": "playwright test --headed",
"test:playwright:debug": "playwright test --debug",
"frontend:lint": "cd frontend && npm run lint",
"frontend:dev": "cd frontend && BACKEND_PORT=${BACKEND_PORT:-3001} VITE_OPEN=true npm run dev -- --port ${FRONTEND_PORT:-3000} --host",
"frontend:check": "cd frontend && npm run check",
"backend:lint": "cargo clippy --workspace --all-targets --all-features -- -D warnings",
"backend:dev": "bash -c 'BACKEND_PORT=${BACKEND_PORT:-$(node scripts/setup-dev-environment.js backend)} npm run backend:dev:watch'",
"backend:check": "cargo check",
"backend:dev:watch": "dotenv -e .env -- bash -c 'DISABLE_BROWSER_OPEN=1 DISABLE_WORKTREE_ORPHAN_CLEANUP=1 RUST_LOG=debug cargo watch -w forge-app/src -x \"run --bin forge-app\"'",
"generate-types": "cargo run --bin generate-forge-types",
"generate-types:check": "cargo run --bin generate-forge-types -- --check",
"prepare-db": "node scripts/prepare-db.js",
"build:npx": "bash scripts/build/build.sh",
"prepack": "npm run build:npx"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@tailwindcss/container-queries": "^0.1.1",
"@types/node": "^22.19.1",
"concurrently": "^8.2.2",
"dotenv-cli": "^11.0.0",
"playwright": "^1.56.1",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"dependencies": {
"@dnd-kit/utilities": "^3.2.2",
"@ebay/nice-modal-react": "^1.2.13",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-toggle-group": "^1.1.11",
"@xenova/transformers": "^2.17.2",
"framer-motion": "^12.23.22",
"lodash": "^4.17.21",
"mermaid": "11.4.1",
"react-resizable-panels": "^3.0.6",
"uuid": "^13.0.0",
"webpack": "^5.102.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"onnxruntime-node",
"protobufjs",
"sharp"
]
}
}