codesavant 1.0.0 → 1.0.1
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/dist/cli.js +1814 -877
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codesavant",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Multi-provider AI coding assistant for your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"postbuild": "node -e \"const fs=require('fs'); let c=fs.readFileSync('dist/cli.js','utf8'); if(!c.startsWith('#!')) c='#!/usr/bin/env node\\n'+c; fs.writeFileSync('dist/cli.js',c);\"",
|
|
16
16
|
"dev": "tsx src/cli.ts",
|
|
17
17
|
"start": "node dist/cli.js",
|
|
18
|
-
"test": "
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest",
|
|
20
|
+
"test:coverage": "vitest run --coverage",
|
|
21
|
+
"test:ui": "vitest --ui",
|
|
19
22
|
"lint": "eslint src",
|
|
20
23
|
"prepublishOnly": "npm run build"
|
|
21
24
|
},
|
|
@@ -69,9 +72,13 @@
|
|
|
69
72
|
"@types/react": "^19.2.9",
|
|
70
73
|
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
|
71
74
|
"@typescript-eslint/parser": "^8.28.0",
|
|
75
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
72
76
|
"esbuild": "^0.27.2",
|
|
73
77
|
"eslint": "^9.21.0",
|
|
78
|
+
"globals": "^17.1.0",
|
|
74
79
|
"tsx": "^4.21.0",
|
|
75
|
-
"typescript": "^5.9.3"
|
|
80
|
+
"typescript": "^5.9.3",
|
|
81
|
+
"typescript-eslint": "^8.53.1",
|
|
82
|
+
"vitest": "^4.0.18"
|
|
76
83
|
}
|
|
77
84
|
}
|