module-develop-kit 0.2.2 → 0.3.0
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/index.d.ts +8 -9
- package/dist/index.es.js +2840 -2212
- package/dist/index.umd.js +3 -3
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "module-develop-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "前端项目通用工具包",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build:dev": "cross-env NODE_ENV=production APP_ENV=production vite build --mode dev",
|
|
14
|
-
"dev": "npm run build:dev && cross-env NODE_ENV=development APP_ENV=dev vite --mode dev --config test/vite.config.ts",
|
|
14
|
+
"dev": "npm run build:dev && cross-env NODE_ENV=development APP_ENV=dev vite --mode dev --config test/vite.config.ts --debug",
|
|
15
15
|
"build": "cross-env NODE_ENV=production APP_ENV=production vite build --mode production",
|
|
16
16
|
"prepare": "[ -n '$z' ] && z init prepare || echo 'Warning: z not exist at global'",
|
|
17
17
|
"test": "vitest"
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"type": "module",
|
|
20
20
|
"author": "Front-End team",
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@lonely9/eslint-config-team": "^1.2.
|
|
22
|
+
"@lonely9/eslint-config-team": "^1.2.3",
|
|
23
23
|
"@types/crypto-js": "^4.2.2",
|
|
24
24
|
"@types/node": "^22.15.30",
|
|
25
25
|
"@types/sm-crypto": "^0.3.4",
|
|
26
26
|
"cross-env": "^7.0.3",
|
|
27
|
-
"eslint": "^9.
|
|
27
|
+
"eslint": "^9.31.0",
|
|
28
28
|
"jsdom": "^26.1.0",
|
|
29
|
-
"prettier": "^3.
|
|
29
|
+
"prettier": "^3.6.2",
|
|
30
30
|
"typescript": "^5.8.3",
|
|
31
31
|
"unplugin-dts": "^1.0.0-beta.0",
|
|
32
32
|
"vite": "^6.3.5",
|
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"crypto-js": "^4.2.0",
|
|
38
|
+
"gm-crypt": "^0.0.2",
|
|
38
39
|
"sm-crypto": "^0.3.13"
|
|
39
40
|
}
|
|
40
41
|
}
|