-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "our-ui",
"version": "1.0.4",
"description": "一款基于tailwind 和 vue 的 UI 组件库",
"main": "lib/our-ui.min.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/0wlism/our-ui.git"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js --open",
"build:demo": "rm -rf ./dist && cross-env NODE_ENV=production webpack --config webpack.prod.js",
"build:lib": "rm -rf ./lib && cross-env NODE_ENV=production LIB=true webpack --config webpack.lib.js",
"build:vendor": "rm -rf ./vendor && cross-env NODE_ENV=production webpack --config webpack.vendor.js",
"pub": "npm publish --registry http://registry.npmjs.org"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"author": "0wlism",
"keywords": [
"vue",
"tailwind",
"ui",
"our-ui"
],
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^4.0.3",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"style-loader": "^1.1.4",
"tailwindcss": "^1.2.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "^2.6.11",
"vue-router": "^3.1.6",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}