@gluttons/es-tools 0.0.5
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/README.md +3 -0
- package/package.json +52 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gluttons/es-tools",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"description": "基于 Vue3 的储能工具包",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/typings/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"dev": "webpack server --hot --config webpack.dev.js",
|
|
9
|
+
"demo": "webpack --config webpack.demo.js",
|
|
10
|
+
"build": "webpack --config webpack.prod.js",
|
|
11
|
+
"prebuild": "tsc -p src",
|
|
12
|
+
"build:patch": "webpack --config webpack.prod.js",
|
|
13
|
+
"prebuild:patch": "npm version patch && tsc -p src",
|
|
14
|
+
"build:minor": "webpack --config webpack.prod.js",
|
|
15
|
+
"prebuild:minor": "npm version minor && tsc -p src",
|
|
16
|
+
"build:major": "webpack --config webpack.prod.js",
|
|
17
|
+
"prebuild:major": "npm version major && tsc -p src"
|
|
18
|
+
},
|
|
19
|
+
"author": "GT<769416198@qq.com>",
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@babel/core": "^7.18.6",
|
|
23
|
+
"@babel/preset-env": "^7.18.6",
|
|
24
|
+
"@gluttons/fortress-ui": "^0.2.1",
|
|
25
|
+
"@kotron/fortress-ui": "^0.2.0",
|
|
26
|
+
"@vue/compiler-sfc": "^3.2.37",
|
|
27
|
+
"babel-loader": "^8.2.5",
|
|
28
|
+
"clean-webpack-plugin": "^4.0.0",
|
|
29
|
+
"core-js": "^3.23.3",
|
|
30
|
+
"css-loader": "^6.7.1",
|
|
31
|
+
"html-webpack-plugin": "^5.5.0",
|
|
32
|
+
"sass": "^1.86.3",
|
|
33
|
+
"sass-loader": "^16.0.5",
|
|
34
|
+
"style-loader": "^3.3.1",
|
|
35
|
+
"ts-loader": "^9.3.1",
|
|
36
|
+
"tsconfig-paths-webpack-plugin": "^3.5.2",
|
|
37
|
+
"typescript": "^5.3.2",
|
|
38
|
+
"vue-loader": "^17.0.0",
|
|
39
|
+
"vue-markdown": "^2.1.3",
|
|
40
|
+
"webpack": "^5.73.0",
|
|
41
|
+
"webpack-cli": "^4.10.0",
|
|
42
|
+
"webpack-dev-server": "^4.9.3",
|
|
43
|
+
"webpack-merge": "^5.8.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@~crazy/eventmanager": "0.0.1",
|
|
47
|
+
"@~crazy/launcher": "0.0.15",
|
|
48
|
+
"@~crazy/spanner": "0.0.13",
|
|
49
|
+
"vue": "3.4.23",
|
|
50
|
+
"vue-router": "4.3.2"
|
|
51
|
+
}
|
|
52
|
+
}
|