forked from kcosr/agent-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.42 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
60
61
62
63
64
65
66
{
"name": "agent-runner-workspace",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Workspace root for the agent-runner monorepo.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kcosr/agent-runner.git"
},
"engines": {
"node": ">=20.19"
},
"workspaces": ["packages/*", "apps/*"],
"scripts": {
"setup": "npm install",
"build": "npm run build -w @kcosr/agent-runner-core && npm run build -w @kcosr/agent-runner-web && npm run build -w @kcosr/agent-runner && node -e \"require('node:fs').chmodSync('apps/cli/dist/cli.js', 0o755)\"",
"lint": "biome lint --error-on-warnings .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"imports:fix": "biome check --write --formatter-enabled=false --linter-enabled=false .",
"imports:check": "biome check --formatter-enabled=false --linter-enabled=false .",
"check:knip": "knip",
"lint-staged": "lint-staged",
"test:node": "node --test \"test/**/*.test.mjs\"",
"test:web": "npm run test -w @kcosr/agent-runner-web",
"test:all:local": "node scripts/run-tests-concurrently.mjs",
"test:all": "node scripts/run-verification.mjs test",
"check": "node scripts/run-verification.mjs check",
"test": "node scripts/run-verification.mjs test",
"release:sync-versions": "node scripts/sync-workspace-versions.mjs",
"prepack": "npm run build",
"prepare": "husky install",
"clean": "rimraf apps/*/dist packages/*/dist apps/*/tsconfig.tsbuildinfo packages/*/tsconfig.tsbuildinfo",
"agent-runner": "node apps/cli/dist/cli.js"
},
"lint-staged": {
"!dist/**/*.{ts,tsx,js,jsx,mjs,cjs,json}": [
"biome format --write --files-ignore-unknown=true --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.11.30",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"knip": "^6.7.0",
"lint-staged": "^15.2.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vite": "^8",
"vitest": "^4"
}
}