This repository has been archived by the owner on Feb 4, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
90 lines (90 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@vue/ui",
"description": "UI components used in the vuejs organization apps",
"version": "0.12.5",
"author": {
"name": "Guillaume Chau",
"email": "guillaume.b.chau@gmail.com"
},
"keywords": [
"vue",
"vuejs"
],
"license": "MIT",
"main": "dist/vue-ui.umd.js",
"module": "dist/vue-ui.esm.js",
"unpkg": "dist/vue-ui.min.js",
"scripts": {
"demo:serve": "vue-cli-service serve",
"demo:build": "vue-cli-service build",
"demo:lint": "vue-cli-service lint",
"lint": "eslint --ext .js,.vue src/",
"dev": "nodemon --exec 'npm run build:es' --watch src -e js,vue,styl",
"build": "npm run build:browser && npm run build:es && npm run build:umd",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"prepublishOnly": "yarn run lint && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/ui.git"
},
"bugs": {
"url": "https://github.com/vuejs/ui/issues"
},
"homepage": "https://github.com/vuejs/ui#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"focus-visible": "^5.2.0",
"v-tooltip": "^3.0.0-alpha.20",
"vue-resize": "^1.0.0"
},
"devDependencies": {
"@akryum/md-icons-svg": "^1.0.1",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-babel": "^3.5.1",
"@vue/cli-plugin-eslint": "^3.5.1",
"@vue/cli-service": "^3.5.1",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"clean-css": "^4.1.8",
"core-js": "^2.0.0",
"cross-env": "^5.1.3",
"fs-extra": "^9.1.0",
"nodemon": "^1.17.5",
"raw-loader": "^2.0.0",
"rollup": "^2.38.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-require-context": "^0.0.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^4",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue": "^2.6.10",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.0.1"
},
"peerDependencies": {
"vue": "^2.5.13"
},
"resolutions": {
"upath": "1.1.0"
},
"browserslist": [
"> 10%",
"last 2 versions"
]
}