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
59 lines (59 loc) · 1.62 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.62 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
{
"name": "@auto-engineer/cli",
"version": "0.1.2",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"auto-engineer": "./dist/index.js",
"ag": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint 'src/**/*.ts' --max-warnings 0 --config ../../eslint.config.js",
"type-check": "tsc --noEmit",
"start": "tsx src/index.ts start",
"flow": "tsx src/index.ts flow",
"prepublishOnly": "npm run build",
"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/flowlang": "workspace:*",
"@auto-engineer/flowlang-agent": "workspace:*",
"@auto-engineer/message-bus": "workspace:*",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"figlet": "^1.7.0",
"gradient-string": "^3.0.0",
"inquirer": "^9.2.15",
"kleur": "^4.1.5",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"ora": "^8.0.1",
"start": "^5.1.0",
"test": "^3.3.0"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/marked": "^6.0.0",
"@types/marked-terminal": "^6.1.1",
"tsx": "^4.20.3"
}
}