-
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.17 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.17 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": "roark-coding-agent",
"version": "0.0.1",
"module": "roark.ts",
"type": "module",
"bin": {
"roark": "./roark.ts"
},
"files": [
"roark.ts",
"lib",
"docs",
"README.md",
"CHANGELOG.md",
"tsconfig.json"
],
"scripts": {
"start": "bun run roark.ts",
"agent": "bun run roark.ts",
"install-global": "bun install -g \"$PWD\"",
"do": "bun run roark.ts do",
"auto": "bun run roark.ts auto --repo marcellocurto/roark-coding-agent",
"test": "bun test",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache --cache-strategy content --cache-location .eslintcache",
"lint:full": "eslint .",
"check": "bun run typecheck && bun run lint && bun test",
"release:check": "bun run check",
"version:patch": "bun run release:check && bun pm version patch",
"version:minor": "bun run release:check && bun pm version minor",
"version:major": "bun run release:check && bun pm version major"
},
"devDependencies": {
"@types/bun": "latest",
"eslint": "^10.3.0",
"typescript-eslint": "^8.59.2",
"typescript": "^6.0.3"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.72.1"
}
}