forked from yaiks/vue-cookie-comply
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1011 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
32
33
34
35
36
37
{
"name": "vue-cookie-comply-with-reject",
"description": "A Vue 3 component to handle cookie acceptance on your website",
"version": "0.2.10",
"files": [
"dist"
],
"main": "./dist/vue-cookie-comply.es.mjs",
"module": "./dist/vue-cookie-comply.es.mjs",
"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"
},
"repository": {
"url": "https://github.com/gluebi/vue-cookie-comply-with-reject/"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.1.0",
"@vue/compiler-sfc": "^3.2.47",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.10.0",
"prettier": "^2.8.7",
"vite": "^4.2.1",
"vue": "^3.2.47"
},
"peerDependencies": {
"vue": "3.2"
},
"dependencies": {
"@vueuse/core": "10.0.0-beta.2"
}
}