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.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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/flowlang-agent",
"version": "0.1.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "tsx -r dotenv/config src/index.ts",
"test": "vitest run",
"cli-test": "tsx -r dotenv/config src/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"
},
"dependencies": {
"@auto-engineer/ai-gateway": "workspace:*",
"@auto-engineer/flowlang": "workspace:*",
"@auto-engineer/message-bus": "workspace:*",
"vitest": "^3.2.4",
"zod": "^3.25.67",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"tsx": "^4.19.2"
},
"publishConfig": {
"access": "public"
}
}