@neovate/code 0.12.0 → 0.12.2
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 +31 -19
- package/dist/cli.mjs +559 -548
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +560 -549
- package/package.json +14 -6
- package/dist/logfiles/index.html +0 -2846
- package/dist/logfiles/live.html +0 -1465
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovate/code",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"source": "./src/index.ts",
|
|
12
12
|
"bin": {
|
|
13
|
-
"neovate": "./dist/cli.mjs"
|
|
13
|
+
"neovate": "./dist/cli.mjs",
|
|
14
|
+
"neo": "./dist/cli.mjs"
|
|
14
15
|
},
|
|
15
16
|
"scripts": {
|
|
16
17
|
"dev": "bun ./src/cli.ts",
|
|
@@ -21,8 +22,7 @@
|
|
|
21
22
|
"build:dts": "npm run build:type && api-extractor run --local --verbose",
|
|
22
23
|
"build:browser": "pnpm --filter @neovate/browser build",
|
|
23
24
|
"build:post": "bun scripts/post-build.ts",
|
|
24
|
-
"build
|
|
25
|
-
"build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:logfiles && npm run build:post",
|
|
25
|
+
"build": "rm -rf dist dist-dts && npm run build:cli && npm run build:index && npm run build:dts && npm run build:post",
|
|
26
26
|
"ci": "npm run typecheck && npm run biome:format && npm run test",
|
|
27
27
|
"extension:build": "pnpm --filter neovate-assistant build",
|
|
28
28
|
"extension:dev": "pnpm --filter neovate-assistant dev",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"release": "npm run ci && utools release --git-tag --github-release --changelog",
|
|
33
33
|
"release:minor": "npm run ci && utools release --git-tag --github-release --changelog --bump minor",
|
|
34
34
|
"release:major": "npm run ci && utools release --git-tag --github-release --changelog --bump major",
|
|
35
|
-
"repomix": "repomix --include \"src,package.json,README.md\"",
|
|
36
35
|
"test": "vitest run",
|
|
37
36
|
"test:watch": "vitest",
|
|
38
37
|
"test:e2e": "bun scripts/e2e.ts",
|
|
@@ -43,6 +42,7 @@
|
|
|
43
42
|
"keywords": [
|
|
44
43
|
"cli",
|
|
45
44
|
"neovate",
|
|
45
|
+
"neo",
|
|
46
46
|
"ai",
|
|
47
47
|
"coding-agent",
|
|
48
48
|
"agent"
|
|
@@ -50,8 +50,16 @@
|
|
|
50
50
|
"authors": [
|
|
51
51
|
"chencheng <sorrycc@gmail.com> (https://github.com/sorrycc)"
|
|
52
52
|
],
|
|
53
|
+
"homepage": "https://neovateai.dev",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/neovateai/neovate-code/"
|
|
57
|
+
},
|
|
58
|
+
"bugs": {
|
|
59
|
+
"url": "https://github.com/neovateai/neovate-code/issues"
|
|
60
|
+
},
|
|
53
61
|
"license": "MIT",
|
|
54
|
-
"description": "A coding agent
|
|
62
|
+
"description": "A coding agent to enhance your development workflow.",
|
|
55
63
|
"devDependencies": {
|
|
56
64
|
"@ai-sdk/anthropic": "^1.2.12",
|
|
57
65
|
"@ai-sdk/deepseek": "^0.2.16",
|