-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "orbcode",
"version": "0.1.3",
"description": "OrbCode CLI — agentic coding in your terminal, powered by Axon models by MatterAI",
"type": "module",
"bin": {
"orbcode": "./bin/orbcode.js"
},
"main": "./dist/index.js",
"files": [
"bin",
"dist",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "tsx src/index.tsx",
"start": "node dist/index.js",
"prepublishOnly": "npm run typecheck && npm run build"
},
"dependencies": {
"chalk": "^5.3.0",
"ink": "^5.2.1",
"open": "^10.1.0",
"openai": "^4.78.0",
"picomatch": "^4.0.2",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.17.0",
"@types/picomatch": "^3.0.1",
"@types/react": "^18.3.12",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"keywords": [
"orbcode",
"matterai",
"axon",
"cli",
"ai",
"coding-agent"
],
"license": "UNLICENSED"
}