-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.24 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
{
"name": "loopcode",
"version": "1.1.1",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "for file in tests/*.test.ts; do bun test $file || exit 1; done",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"package": "./package.sh"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@clack/prompts": "^1.6.0",
"@inkjs/ui": "^2.0.0",
"@opencode-ai/sdk": "^1.17.13",
"@types/react": "^19.2.17",
"commander": "^15.0.0",
"fastembed": "^2.1.0",
"ink": "^7.1.0",
"react": "^19.2.7",
"react-devtools-core": "^7.0.1",
"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": {
"bun-types": "latest",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.4",
"typescript-eslint": "^8.62.1"
}
}