@bty/customer-service-cli 0.1.12 → 0.1.13
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 +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bty/customer-service-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "AI Customer Service CLI - Agent friendly",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/bin.js",
|
|
@@ -10,20 +10,14 @@
|
|
|
10
10
|
"files": [
|
|
11
11
|
"/dist"
|
|
12
12
|
],
|
|
13
|
-
"scripts": {
|
|
14
|
-
"build": "tsup src/bin.ts --format esm --target node20 --shims",
|
|
15
|
-
"dev": "tsx src/bin.ts",
|
|
16
|
-
"test": "vitest run",
|
|
17
|
-
"test:watch": "vitest"
|
|
18
|
-
},
|
|
19
13
|
"dependencies": {
|
|
20
14
|
"cli-table3": "^0.6.0",
|
|
21
|
-
"commander": "
|
|
22
|
-
"crypto-js": "
|
|
15
|
+
"commander": "^14.0.0",
|
|
16
|
+
"crypto-js": "^4.1.1"
|
|
23
17
|
},
|
|
24
18
|
"devDependencies": {
|
|
25
|
-
"@types/crypto-js": "
|
|
26
|
-
"@types/node": "
|
|
19
|
+
"@types/crypto-js": "^4.1.1",
|
|
20
|
+
"@types/node": "22.18.8",
|
|
27
21
|
"tsup": "^8.0.0",
|
|
28
22
|
"tsx": "^4.0.0",
|
|
29
23
|
"vitest": "^2.0.0"
|
|
@@ -34,5 +28,11 @@
|
|
|
34
28
|
},
|
|
35
29
|
"engines": {
|
|
36
30
|
"node": ">=20.0.0"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup src/bin.ts --format esm --target node20 --shims",
|
|
34
|
+
"dev": "tsx src/bin.ts",
|
|
35
|
+
"test": "vitest run",
|
|
36
|
+
"test:watch": "vitest"
|
|
37
37
|
}
|
|
38
|
-
}
|
|
38
|
+
}
|