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
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "@auto-engineer/server-implementer",
"version": "0.1.0",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"implement": "tsx src/cli/index.ts",
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"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:*",
"@modelcontextprotocol/sdk": "^1.3.0",
"fast-glob": "^3.3.3",
"vite": "^5.4.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"dotenv": "^16.6.1",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}