@aiiware/aii 0.23.0 → 0.23.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/bin/aii +732 -728
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiiware/aii",
|
|
3
|
-
"version": "0.23.
|
|
3
|
+
"version": "0.23.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "🪼 AI-powered CLI assistant for terminal productivity",
|
|
6
6
|
"author": "AiiWare <support@aiiware.com>",
|
|
@@ -39,13 +39,15 @@
|
|
|
39
39
|
"dev": "ts-node src/index.ts",
|
|
40
40
|
"test": "vitest run",
|
|
41
41
|
"test:watch": "vitest",
|
|
42
|
-
"test:coverage": "vitest run --coverage",
|
|
43
|
-
"lint": "eslint src/",
|
|
42
|
+
"test:coverage": "rm -rf coverage && vitest run --coverage",
|
|
43
|
+
"lint": "eslint src/ --max-warnings 19",
|
|
44
44
|
"lint:fix": "eslint src/ --fix",
|
|
45
45
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
46
46
|
"clean": "rm -rf dist bin",
|
|
47
|
-
"prepublishOnly": "npm run clean && npm run lint && npm run lint:cycles && npm run test && npm run build && npm audit --omit=dev --omit=optional --audit-level=high",
|
|
48
|
-
"lint:cycles": "node scripts/check-cycles.mjs"
|
|
47
|
+
"prepublishOnly": "npm run clean && npm run lint && npm run lint:cycles && npm run test:coverage && npm run check:coverage-drift && npm run build && npm audit --omit=dev --omit=optional --audit-level=high",
|
|
48
|
+
"lint:cycles": "node scripts/check-cycles.mjs",
|
|
49
|
+
"ratchet": "node scripts/ratchet.mjs",
|
|
50
|
+
"check:coverage-drift": "node scripts/check-coverage-drift.mjs"
|
|
49
51
|
},
|
|
50
52
|
"engines": {
|
|
51
53
|
"node": ">=20.0.0"
|