@aiiware/aii 0.24.1 → 0.24.3
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 +739 -731
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiiware/aii",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "🪼 AI-powered CLI assistant for terminal productivity",
|
|
6
6
|
"author": "AiiWare <support@aiiware.com>",
|
|
@@ -44,11 +44,12 @@
|
|
|
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 build && npm run test:coverage && npm run check:coverage-drift && npm audit --omit=dev --omit=optional --audit-level=high",
|
|
47
|
+
"prepublishOnly": "npm run clean && npm run lint && npm run lint:cycles && npm run build && npm run test:coverage && npm run check:coverage-drift && npm run check:server-digest && npm audit --omit=dev --omit=optional --audit-level=high",
|
|
48
48
|
"lint:cycles": "node scripts/check-cycles.mjs",
|
|
49
49
|
"ratchet": "node scripts/ratchet.mjs",
|
|
50
50
|
"check:coverage-drift": "node scripts/check-coverage-drift.mjs",
|
|
51
|
-
"check:ratchet-integrity": "node scripts/check-ratchet-integrity.mjs"
|
|
51
|
+
"check:ratchet-integrity": "node scripts/check-ratchet-integrity.mjs",
|
|
52
|
+
"check:server-digest": "node scripts/server-script-digest.mjs https://aiiware.com/server-v1.sh --check"
|
|
52
53
|
},
|
|
53
54
|
"engines": {
|
|
54
55
|
"node": ">=20.0.0"
|