forked from VanishMax/vue-wheel-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.13 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
{
"name": "vue-wheel-picker",
"version": "0.3.1",
"description": "Picker is a Vue component that selects a value from the list by dragging the cylinder allowing users to experience the rolling effect",
"main": "dist/picker.ssr.js",
"browser": "dist/picker.esm.js",
"module": "dist/picker.esm.js",
"unpkg": "dist/picker.min.js",
"types": "picker.d.ts",
"files": [
"dist/*",
"picker.d.ts",
"src/**/*.vue"
],
"scripts": {
"serve": "vue-cli-service serve demo/serve.ts",
"demo": "vue-cli-service build demo/serve.ts",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.14.8",
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-typescript": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"cross-env": "^7.0.3",
"minimist": "^1.2.5",
"rollup": "^2.36.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"typescript": "^3.8.3",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"engines": {
"node": ">=14"
},
"keywords": [
"picker",
"vue",
"ui-components",
"javascript",
"typescript"
],
"author": "VanishMax (https://vanishmax.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/VanishMax/picker.git"
},
"bugs": {
"url": "https://github.com/VanishMax/picker/issues"
}
}