@plasius/ai 1.1.8 → 1.1.9
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/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/ai",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Plasius AI functions providing chatbot, text-to-speech, speech-to-text, and AI-generated images and videos",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"chatbot",
|
|
@@ -18,18 +18,19 @@
|
|
|
18
18
|
"build": "tsc --build && npm run build:cjs",
|
|
19
19
|
"test": "vitest run",
|
|
20
20
|
"test:watch": "vitest",
|
|
21
|
+
"typecheck": "tsc --noEmit",
|
|
21
22
|
"test:coverage": "vitest run --coverage",
|
|
22
23
|
"test:coverage:watch": "vitest --coverage",
|
|
23
24
|
"clean": "rimraf dist-cjs dist tsconfig.tsbuildinfo",
|
|
24
25
|
"reset:clean": "rm -rf node_modules package-lock.json && npm run clean",
|
|
25
26
|
"audit:ts": "tsc --noEmit --pretty",
|
|
26
|
-
"audit:eslint": "eslint
|
|
27
|
+
"audit:eslint": "eslint . --max-warnings=0",
|
|
27
28
|
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
28
|
-
"audit:npm": "npm audit --audit-level=
|
|
29
|
+
"audit:npm": "npm audit --audit-level=high --omit=dev",
|
|
29
30
|
"audit:test": "vitest run --coverage",
|
|
30
31
|
"audit:all": "npm-run-all -l audit:ts audit:eslint audit:deps audit:npm audit:test",
|
|
31
32
|
"build:cjs": "tsc -p tsconfig.json --module commonjs --moduleResolution node --outDir dist-cjs --tsBuildInfoFile dist-cjs/tsconfig.tsbuildinfo",
|
|
32
|
-
"lint": "eslint .",
|
|
33
|
+
"lint": "eslint . --max-warnings=0",
|
|
33
34
|
"prepare": "npm run build",
|
|
34
35
|
"demo:run": "npm run build && node demo/example.mjs",
|
|
35
36
|
"pack:check": "node scripts/verify-public-package.cjs",
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
"react": "^19.1.0"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
51
|
+
"@eslint/js": "^10.0.1",
|
|
50
52
|
"@testing-library/react": "^16.3.0",
|
|
51
53
|
"@types/node": "^24.3.1",
|
|
52
54
|
"@types/react": "^19.2.14",
|
|
@@ -56,6 +58,7 @@
|
|
|
56
58
|
"@vitest/coverage-v8": "^4.0.18",
|
|
57
59
|
"ajv": "^6.12.6",
|
|
58
60
|
"eslint": "^10.0.1",
|
|
61
|
+
"globals": "^17.3.0",
|
|
59
62
|
"npm-run-all": "^1.1.3",
|
|
60
63
|
"react": "^19.1.0",
|
|
61
64
|
"react-dom": "^19.1.0",
|