forked from yaiks/vue-cookie-comply
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 841 Bytes
/
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
{
"name": "vue-cookie-comply",
"description": "A Vue 3 component to handle cookie acceptance on your website",
"version": "0.0.3",
"files": [
"dist"
],
"main": "./dist/vue-cookie-comply.umd.js",
"module": "./dist/vue-cookie-comply.es.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write",
"ci": "rm -rf node_modules && yarn install --frozen-lockfile"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.3.0",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.17.0",
"prettier": "^2.3.2",
"vite": "^2.4.4",
"vue": "^3.0.5"
},
"peerDependencies": {
"vue": "3.x"
}
}