flashduty-knowledge-base 1.2.5 → 1.2.6
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/en.d.ts +4 -0
- package/dist/esm/en.js +1168 -332
- package/dist/esm/zh.js +626 -163
- package/dist/iife/en.js +1146 -310
- package/dist/iife/zh.js +609 -146
- package/dist/zh.d.ts +4 -0
- package/package.json +11 -4
package/dist/zh.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flashduty-knowledge-base",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.6",
|
|
4
4
|
"description": "flashduty knowledge base",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"engines": {
|
|
7
|
+
"node": "18.x"
|
|
8
|
+
},
|
|
6
9
|
"scripts": {
|
|
7
10
|
"build": "tsc && npm run build:iife && npm run build:esm",
|
|
8
11
|
"build:iife": "rm -rf dist/iife && vite build --mode iife",
|
|
9
12
|
"build:esm": "rm -rf dist/esm && vite build --mode esm",
|
|
10
|
-
"prepublishOnly": "npm run build
|
|
11
|
-
"upload": "npm run build:iife && node scripts/upload.mjs"
|
|
13
|
+
"prepublishOnly": "npm run build",
|
|
14
|
+
"upload": "npm run build:iife && node scripts/upload.mjs",
|
|
15
|
+
"docs:dev": "vitepress dev docs",
|
|
16
|
+
"docs:build": "vitepress build docs",
|
|
17
|
+
"docs:preview": "vitepress preview docs"
|
|
12
18
|
},
|
|
13
19
|
"exports": {
|
|
14
20
|
"./zh": {
|
|
@@ -46,6 +52,7 @@
|
|
|
46
52
|
"ali-oss": "^6.22.0",
|
|
47
53
|
"dotenv": "^16.4.7",
|
|
48
54
|
"typescript": "^5.7.3",
|
|
49
|
-
"vite": "^5.4.11"
|
|
55
|
+
"vite": "^5.4.11",
|
|
56
|
+
"vitepress": "^1.6.3"
|
|
50
57
|
}
|
|
51
58
|
}
|