@ywfe/fe-tools 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bundle.js +8437 -0
- package/dist/bundle.js.map +1 -0
- package/package.json +28 -0
package/package.json
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"name": "@ywfe/fe-tools",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "工具函数库",
|
5
|
+
"main": "./dist/bundle.js",
|
6
|
+
"module": "./dist/bundle.js",
|
7
|
+
"type": "module",
|
8
|
+
"files": [
|
9
|
+
"dist"
|
10
|
+
],
|
11
|
+
"scripts": {
|
12
|
+
"build": "rollup -c",
|
13
|
+
"prepublishOnly": "npm run build"
|
14
|
+
},
|
15
|
+
"publishConfig": {
|
16
|
+
"access": "public",
|
17
|
+
"registry": "https://registry.npmjs.org/"
|
18
|
+
},
|
19
|
+
"dependencies": {
|
20
|
+
"@ywfe/utils": "0.10.74",
|
21
|
+
"@lxzy-cli-dev/fe-tools": "1.0.0-beta.2"
|
22
|
+
},
|
23
|
+
"devDependencies": {
|
24
|
+
"typescript": "^5.4.5"
|
25
|
+
},
|
26
|
+
"author": "",
|
27
|
+
"license": "ISC"
|
28
|
+
}
|