forked from Nano-Collective/nanocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.17 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@motesoftware/nanocoder",
"main": "dist/cli.js",
"version": "1.9.0",
"description": "A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter",
"keywords": [
"cli",
"ai",
"coding",
"agent",
"ollama",
"openrouter",
"local",
"typescript"
],
"author": "Mote Software Ltd",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mote-Software/nanocoder.git"
},
"homepage": "https://github.com/Mote-Software/nanocoder#readme",
"bugs": {
"url": "https://github.com/Mote-Software/nanocoder/issues"
},
"bin": {
"nanocoder": "dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "prettier --check . && xo && ava",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"source/prompt.md"
],
"dependencies": {
"@langchain/core": "^0.3.72",
"@langchain/langgraph": "^0.4.8",
"@langchain/openai": "^0.6.10",
"@mishieck/ink-titled-box": "^0.3.0",
"@modelcontextprotocol/sdk": "^1.17.3",
"@nanostores/react": "^1.0.0",
"cli-highlight": "^2.1.11",
"ink": "^6.0.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"meow": "^11.0.0",
"nanostores": "^1.0.1",
"ollama": "^0.5.17",
"react": "^19.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/node": "^24.3.0",
"@types/react": "^19.0.0",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^3.0.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.3",
"xo": "^0.53.1"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/prop-types": "off"
}
},
"prettier": "@vdemedes/prettier-config"
}