forked from yanghejing/vue3-tags-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.32 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
{
"name": "ephort-vue3-tags-input",
"version": "1.0.6",
"author": {
"name": "Chinh Pham Duc",
"email": "chinh12hy@gmail.com",
"url": "https://chinh-resume.netlify.app/"
},
"description": "A tags input component for Vue 3 with custom validation, templating...",
"homepage": "https://vue3-tags-input.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/ephort/vue3-tags-input"
},
"bugs": {
"url": "https://github.com/chinh12hy/vue3-tags-input/issues"
},
"license": "MIT",
"keywords": [
"javascript",
"vue",
"vue3",
"tags",
"tags-input",
"input tags",
"vue3-input-tags",
"vue-input-tags",
"vue-tags-input",
"vue-component",
"vue tags input",
"chinh12hy"
],
"main": "dist/vue3-tags-input.ssr.js",
"browser": "dist/vue3-tags-input.esm.js",
"module": "dist/vue3-tags-input.esm.js",
"unpkg": "dist/vue3-tags-input.min.js",
"files": [
"dist/*",
"src/**/*.vue"
],
"sideEffects": false,
"scripts": {
"serve": "vue-cli-service serve dev/serve.js",
"prebuild": "rimraf ./dist",
"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"
},
"dependencies": {
"click-outside-vue3": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.0.11",
"cross-env": "^7.0.3",
"minimist": "^1.2.5",
"postcss": "^8.2.10",
"rimraf": "^3.0.2",
"rollup": "^2.52.8",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^6.0.0",
"vue": "^3.0.5",
"sass": "^1.49.9",
"sass-loader": "^10"
},
"peerDependencies": {
"vue": "^3.0.5"
},
"engines": {
"node": ">=12"
}
}