-
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.43 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.43 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": "@bluemoon-o2/rollcode",
"version": "0.0.3",
"description": "RollCode is a persistent code agent.",
"type": "module",
"keywords": [
"cli",
"code-agent"
],
"bin": {
"rollcode": "rollcode.js"
},
"files": [
"LICENSE",
"README.md",
"rollcode.js",
"scripts",
"skills",
"vendor",
"dist/types"
],
"exports": {
".": "./rollcode.js"
},
"license": "Apache-2.0",
"engines": {
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun run scripts/postinstall-patches.js && bun run build.js",
"postinstall": "bun run scripts/postinstall-patches.js || echo rollcode: vendor patches skipped",
"release:sync-notes": "bun run scripts/sync-release-notes-from-changelog.ts",
"prepublishOnly": "bun run release:sync-notes && bun run build",
"typecheck": "bunx tsc --noEmit",
"test": "bun test ./test/*.test.ts",
"lint": "bunx --bun @biomejs/biome@2.2.5 check src test",
"fix": "bunx --bun @biomejs/biome@2.2.5 check --write src test"
},
"dependencies": {
"ink": "^5.0.1",
"ink-text-input": "^5.0.1",
"open": "^10.2.0",
"react": "18.2.0"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/react": "^18.3.11",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json}": [
"bunx --bun @biomejs/biome@2.2.5 check --write"
]
}
}