-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.32 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.32 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
{
"name": "devagent-runner",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "bun@1.3.10",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/egavrin/devagent-runner.git"
},
"bugs": {
"url": "https://github.com/egavrin/devagent-runner/issues"
},
"homepage": "https://github.com/egavrin/devagent-runner#readme",
"engines": {
"bun": ">=1.3.10",
"node": ">=20"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bunx tsc -b packages/core packages/local-runner packages/adapters packages/cli",
"typecheck": "bunx tsc -b --pretty false packages/core packages/local-runner packages/adapters packages/cli",
"test": "bun run build && node ./node_modules/vitest/vitest.mjs run --config vitest.config.ts",
"lint": "bunx eslint packages/",
"check:oss": "node ./scripts/check-oss.mjs"
},
"devDependencies": {
"@devagent-sdk/schema": "file:../devagent-sdk/packages/schema",
"@devagent-sdk/types": "file:../devagent-sdk/packages/types",
"@devagent-sdk/validation": "file:../devagent-sdk/packages/validation",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.10",
"@types/node": "^24.3.0",
"eslint": "^10.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^3.2.4"
}
}