-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.55 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
{
"name": "loopcode",
"version": "2.0.0",
"main": "dist/index.js",
"bin": {
"loopcode": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc -p tsconfig.test.json",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"package": "./package.sh",
"prepublishOnly": "npm run build && npm run typecheck && npm run lint && npm run test"
},
"keywords": [
"loopcode",
"ai",
"agent",
"orchestrator",
"opencode",
"cli",
"tui"
],
"author": "",
"license": "ISC",
"description": "Autonomous software engineering orchestrator built on top of OpenCode",
"dependencies": {
"@opencode-ai/sdk": "^1.17.13",
"commander": "^15.0.0",
"fastembed": "^2.1.0",
"ink": "^7.1.0",
"react": "^19.2.7",
"smol-toml": "^1.7.0",
"sqlite-vec": "^0.1.9",
"tree-sitter": "^0.21.1",
"tree-sitter-javascript": "^0.21.3",
"tree-sitter-typescript": "^0.21.2",
"typescript": "^6.0.3",
"typescript-language-server": "^5.3.0",
"zod": "4.4.3"
},
"type": "module",
"trustedDependencies": [
"tree-sitter",
"tree-sitter-javascript",
"tree-sitter-typescript",
"sqlite-vec"
],
"devDependencies": {
"@types/react": "^19.2.17",
"bun-types": "latest",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"ink-testing-library": "4.0.0",
"prettier": "^3.9.4",
"typescript-eslint": "^8.62.1"
}
}