-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"name": "frontagent",
"version": "0.1.5",
"description": "Enterprise AI agent platform for frontend engineering with planning/execution architecture, SDD constraints, and MCP-controlled code generation",
"type": "module",
"bin": {
"frontagent": "dist/index.cjs"
},
"files": [
"dist/index.cjs",
"dist/index.cjs.map",
"dist/code-quality-subagent-worker.cjs",
"dist/code-quality-subagent-worker.cjs.map",
"README.md",
"LICENSE"
],
"scripts": {
"build": "turbo build && node build.mjs",
"bundle": "node build.mjs",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"clean": "turbo clean && rm -rf node_modules dist",
"prepublishOnly": "pnpm build"
},
"keywords": [
"ai-agent",
"frontend",
"code-generation",
"mcp",
"sdd",
"automation",
"cli",
"developer-tools"
],
"author": "FrontAgent Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ceilf6/FrontAgent.git"
},
"bugs": {
"url": "https://github.com/ceilf6/FrontAgent/issues"
},
"homepage": "https://github.com/ceilf6/FrontAgent#readme",
"dependencies": {
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.27.2",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0"
}
}