-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.83 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.83 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
66
67
68
69
70
{
"name": "nano-opencode",
"version": "0.0.1",
"description": "A minimal AI coding assistant for the terminal - inspired by OpenCode and Oh My OpenCode",
"type": "module",
"main": "dist/app.js",
"bin": {
"nano": "./dist/app.js",
"nano-opencode": "./dist/app.js",
"noc": "./dist/app.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "bun src/app.ts",
"dev:node": "tsx src/app.ts",
"tui": "bun src/tui.ts",
"tui:node": "tsx src/tui.ts",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.ts",
"test:watch": "node --import tsx --test --watch test/*.test.ts",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"check": "npm run typecheck && npm run lint && npm run format:check",
"prepare": "husky"
},
"keywords": [
"ai",
"coding",
"assistant",
"cli",
"terminal",
"opencode",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@google/generative-ai": "^0.24.1",
"better-sqlite3": "^11.7.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"glob": "^11.0.0",
"js-yaml": "^4.1.1",
"openai": "^6.16.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.17.0",
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
},
"engines": {
"node": ">=20.0.0"
}
}