forked from BeOnAuto/auto-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.04 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.04 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
{
"name": "@auto-engineer/frontend-implementation",
"version": "0.1.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"ai-agent": "tsx -r dotenv/config src/agent-cli.ts",
"lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.js",
"type-check": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore",
"lint:fix": "eslint 'src/**/*.ts' --fix --config ../../eslint.config.js",
"format:fix": "prettier --write \"**/*.{js,ts,json,md,yml,yaml}\" --ignore-path ../../.prettierignore"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@auto-engineer/ai-gateway": "workspace:*",
"@auto-engineer/frontend-checks": "workspace:*",
"@modelcontextprotocol/sdk": "^1.3.0",
"openai": "^5.7.0",
"vite": "^5.4.1",
"zod": "^3.25.67"
},
"devDependencies": {
"playwright": "^1.54.1"
}
}