@neovate/code 0.22.4 → 0.22.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -2
- package/dist/cli.mjs +896 -811
- package/dist/index.d.ts +109 -9
- package/dist/index.mjs +895 -810
- package/package.json +5 -16
- package/dist/mcps/chrome-devtools-mcp.mjs +0 -668
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovate/code",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -20,8 +20,7 @@
|
|
|
20
20
|
"build:index": "bun build src/index.ts --external react-devtools-core --minify --outfile dist/index.mjs --target=node",
|
|
21
21
|
"build:dts": "npm run build:type && api-extractor run --local --verbose",
|
|
22
22
|
"build:post": "bun scripts/post-build.ts",
|
|
23
|
-
"build
|
|
24
|
-
"build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:mcps && npm run build:post",
|
|
23
|
+
"build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:post",
|
|
25
24
|
"ci": "npm run typecheck && npm run format && npm run test",
|
|
26
25
|
"detect-unused": "bun scripts/detect-unused.ts",
|
|
27
26
|
"extension:build": "pnpm --filter neovate-assistant build",
|
|
@@ -61,9 +60,9 @@
|
|
|
61
60
|
"license": "MIT",
|
|
62
61
|
"description": "A coding agent to enhance your development workflow.",
|
|
63
62
|
"devDependencies": {
|
|
63
|
+
"cli-highlight": "^2.1.11",
|
|
64
64
|
"@ai-sdk/anthropic": "^2.0.56",
|
|
65
65
|
"@ai-sdk/cerebras": "^1.0.33",
|
|
66
|
-
"@ai-sdk/deepseek": "^1.0.32",
|
|
67
66
|
"@ai-sdk/google": "^2.0.46",
|
|
68
67
|
"@ai-sdk/huggingface": "^0.0.12",
|
|
69
68
|
"@ai-sdk/mcp": "^0.0.12",
|
|
@@ -82,10 +81,9 @@
|
|
|
82
81
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
83
82
|
"@openrouter/ai-sdk-provider": "^1.5.3",
|
|
84
83
|
"@sinclair/typebox": "^0.34.38",
|
|
85
|
-
"@stagewise/agent-interface": "^0.3.2",
|
|
86
84
|
"@types/bun": "^1.3.4",
|
|
87
85
|
"@types/debug": "^4.1.12",
|
|
88
|
-
"@types/
|
|
86
|
+
"@types/degit": "^2.8.6",
|
|
89
87
|
"@types/lodash-es": "^4.17.12",
|
|
90
88
|
"@types/marked-terminal": "^6.1.1",
|
|
91
89
|
"@types/node": "^25.0.2",
|
|
@@ -94,18 +92,15 @@
|
|
|
94
92
|
"@types/turndown": "^5.0.6",
|
|
95
93
|
"@types/ws": "^8.18.1",
|
|
96
94
|
"@types/yargs-parser": "^21.0.3",
|
|
97
|
-
"@umijs/clack-prompts": "^0.0.7",
|
|
98
95
|
"@umijs/tools": "^0.1.36",
|
|
99
96
|
"ai": "^5.0.113",
|
|
100
97
|
"chalk": "^5.5.0",
|
|
101
98
|
"chardet": "^2.1.1",
|
|
102
|
-
"chrome-devtools-mcp": "^0.8.1",
|
|
103
99
|
"clipboardy": "^5.0.2",
|
|
104
|
-
"date-fns": "^4.1.0",
|
|
105
100
|
"debug": "^4.4.3",
|
|
106
101
|
"defu": "^6.1.4",
|
|
102
|
+
"degit": "^2.8.4",
|
|
107
103
|
"diff": "^8.0.2",
|
|
108
|
-
"dotenv": "^17.2.3",
|
|
109
104
|
"fastify": "^5.6.2",
|
|
110
105
|
"fastmcp": "^3.25.4",
|
|
111
106
|
"front-matter": "^4.0.2",
|
|
@@ -118,13 +113,10 @@
|
|
|
118
113
|
"ink-spinner": "^5.0.0",
|
|
119
114
|
"is-unicode-supported": "^2.1.0",
|
|
120
115
|
"jiti": "^2.6.1",
|
|
121
|
-
"js-yaml": "^4.1.1",
|
|
122
|
-
"jsonrepair": "^3.13.1",
|
|
123
116
|
"lint-staged": "^16.2.7",
|
|
124
117
|
"lodash-es": "^4.17.21",
|
|
125
118
|
"marked": "^17.0.1",
|
|
126
119
|
"marked-terminal": "^7.3.0",
|
|
127
|
-
"minimatch": "^10.1.1",
|
|
128
120
|
"oauth-providers": "^1.0.2",
|
|
129
121
|
"open": "^11.0.0",
|
|
130
122
|
"pathe": "^2.0.3",
|
|
@@ -137,16 +129,13 @@
|
|
|
137
129
|
"tar": "^7.5.2",
|
|
138
130
|
"terminal-link": "^5.0.0",
|
|
139
131
|
"turndown": "^7.2.2",
|
|
140
|
-
"type-fest": "^5.3.1",
|
|
141
132
|
"typescript": "^5.9.3",
|
|
142
133
|
"undici": "6.13.0",
|
|
143
|
-
"valtio": "^2.2.0",
|
|
144
134
|
"vitest": "^4.0.15",
|
|
145
135
|
"wrap-ansi": "^9.0.0",
|
|
146
136
|
"ws": "^8.18.3",
|
|
147
137
|
"yargs-parser": "22.0.0",
|
|
148
138
|
"zod": "^4.1.13",
|
|
149
|
-
"zod-to-json-schema": "^3.25.0",
|
|
150
139
|
"zustand": "^5.0.9"
|
|
151
140
|
},
|
|
152
141
|
"volta": {
|