@neovate/code 0.10.0 → 0.11.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neovate/code",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -21,10 +21,9 @@
21
21
  "build:index": "bun build src/index.ts --external react-devtools-core --minify --outfile dist/index.mjs --target=node",
22
22
  "build:dts": "npm run build:type && api-extractor run --local --verbose",
23
23
  "build:browser": "pnpm --filter @neovate/browser build",
24
- "build:check": "bun --version | grep -q '^1\\.2\\.7$' || (echo 'Error: Bun version must be 1.2.7' && exit 1)",
25
24
  "build:post": "bun scripts/post-build.ts",
26
25
  "build:logfiles": "cp -r logfiles dist/logfiles",
27
- "build": "npm run build:check && rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:browser && npm run build:logfiles && npm run build:post",
26
+ "build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:browser && npm run build:logfiles && npm run build:post",
28
27
  "ci": "npm run typecheck && npm run format:check && npm run test",
29
28
  "extension:build": "pnpm --filter neovate-assistant build",
30
29
  "extension:dev": "pnpm --filter neovate-assistant dev",
@@ -38,7 +37,8 @@
38
37
  "test": "vitest run",
39
38
  "test:watch": "vitest",
40
39
  "typecheck": "tsc --noEmit",
41
- "prepare": "husky"
40
+ "prepare": "husky",
41
+ "ready": "bun scripts/ready.ts"
42
42
  },
43
43
  "keywords": [
44
44
  "cli",
@@ -72,7 +72,9 @@
72
72
  "@sinclair/typebox": "^0.34.38",
73
73
  "@stagewise/agent-interface": "^0.2.3",
74
74
  "@trivago/prettier-plugin-sort-imports": "^5.2.2",
75
+ "@types/bun": "^1.2.21",
75
76
  "@types/debug": "^4.1.12",
77
+ "@types/express": "^5.0.3",
76
78
  "@types/js-yaml": "^4.0.9",
77
79
  "@types/lodash-es": "^4.17.12",
78
80
  "@types/marked-terminal": "^6.1.1",
@@ -94,9 +96,12 @@
94
96
  "defu": "^6.1.4",
95
97
  "diff": "^8.0.2",
96
98
  "dotenv": "^17.2.1",
99
+ "express": "^5.1.0",
97
100
  "fastify": "^5.5.0",
98
101
  "front-matter": "^4.0.2",
99
102
  "glob": "^11.0.3",
103
+ "gpt-tokenizer": "^3.0.1",
104
+ "gradient-string": "^3.0.0",
100
105
  "husky": "^9.1.7",
101
106
  "ink": "^6.1.0",
102
107
  "ink-select-input": "^6.2.0",
@@ -110,6 +115,7 @@
110
115
  "marked-terminal": "^7.3.0",
111
116
  "minimatch": "^10.0.1",
112
117
  "open": "^10.2.0",
118
+ "pathe": "^2.0.3",
113
119
  "picocolors": "^1.1.1",
114
120
  "portfinder": "^1.0.37",
115
121
  "prettier": "^3.6.2",
@@ -118,11 +124,9 @@
118
124
  "spawn-rx": "^5.1.2",
119
125
  "strip-ansi": "^7.1.0",
120
126
  "tar": "^7.4.3",
121
- "tiktoken": "^1.0.22",
122
127
  "turndown": "^7.2.0",
123
128
  "type-fest": "^4.41.0",
124
129
  "typescript": "^5.9.2",
125
- "upgear": "^0.0.3",
126
130
  "valtio": "^2.1.5",
127
131
  "vitest": "^3.2.4",
128
132
  "wrap-ansi": "^9.0.0",
@@ -142,12 +146,5 @@
142
146
  },
143
147
  "publishConfig": {
144
148
  "access": "public"
145
- },
146
- "upgear": {
147
- "files": [
148
- "vendor"
149
- ],
150
- "needReinstall": false,
151
- "changelogUrl": "https://github.com/neovateai/neovate-code/blob/master/CHANGELOG.md"
152
149
  }
153
150
  }