reygent-code 1.0.1 → 1.1.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/README.md +16 -5
- package/dist/cli.js +685 -584
- package/dist/cli.js.map +1 -1
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reygent-code",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Agentic coding tool for software development",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cli.js",
|
|
@@ -25,7 +25,10 @@
|
|
|
25
25
|
"test:watch": "vitest",
|
|
26
26
|
"test:coverage": "vitest run --coverage",
|
|
27
27
|
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
28
|
-
"verify:publish": "npm pack && npm link"
|
|
28
|
+
"verify:publish": "npm pack && npm link",
|
|
29
|
+
"docs:dev": "vitepress dev docs",
|
|
30
|
+
"docs:build": "vitepress build docs",
|
|
31
|
+
"docs:preview": "vitepress preview docs"
|
|
29
32
|
},
|
|
30
33
|
"repository": {
|
|
31
34
|
"type": "git",
|
|
@@ -63,9 +66,12 @@
|
|
|
63
66
|
"@types/node": "^25.6.0",
|
|
64
67
|
"@vitest/coverage-v8": "^3.2.4",
|
|
65
68
|
"husky": "^9.1.7",
|
|
69
|
+
"mermaid": "^11.15.0",
|
|
66
70
|
"semantic-release": "^25.0.3",
|
|
67
71
|
"tsup": "^8.5.1",
|
|
68
72
|
"typescript": "^6.0.2",
|
|
73
|
+
"vitepress": "^1.6.4",
|
|
74
|
+
"vitepress-plugin-mermaid": "^2.0.17",
|
|
69
75
|
"vitest": "^3.2.4"
|
|
70
76
|
}
|
|
71
77
|
}
|