-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.33 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
{
"name": "@avensio/cookie-consent",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "vite",
"dev:docs": "vitepress dev docs",
"test": "vitest --coverage --globals --silent src/components",
"test:ci": "vitest --coverage --reporter 'junit' --outputFile JUnit.xml --run --globals --silent src/components",
"lint": "eslint . --fix",
"build:docs": "vitepress build docs",
"build": "vite build",
"build:playground": "vite build -c vite.config.playground.ts",
"build:lib": "vite build -c vite.config.lib.ts",
"serve": "vite preview",
"browserslist:update": "npx browserslist@latest --update-db",
"browserslist:show:selected": "npx browserslist",
"dependencies:update": "npm-check -u"
},
"files": [
"dist"
],
"keywords": [
"vue",
"cookie",
"consent",
"privacy",
"manager"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mastercuber/cookie-consent.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Mastercuber/cookie-consent/issues"
},
"homepage": "https://mastercuber.github.io/Cookie-Consent/",
"main": "./dist/cookie-consent.cjs.js",
"module": "./dist/cookie-consent.es.js",
"types": "./dist/components/CookieConsent.vue.d.ts",
"exports": {
"./style.css": "./dist/style.css",
".": {
"import": "./dist/cookie-consent.es.js",
"require": "./dist/cookie-consent.cjs.js"
}
},
"publishConfig": {
"registry": "https://repo.avensio.de/repository/npm-hosted/"
},
"browserslist": [
"last 6 versions"
],
"dependencies": {
"vue": "^3.2.47",
"vue-i18n": "^9.2.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/parser": "^5.50.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.28.3",
"@vitest/ui": "^0.28.3",
"@vue/test-utils": "^2.2.9",
"autoprefixer": "^10.4.13",
"browserslist": "^4.21.5",
"eslint": "^8.33.0",
"eslint-plugin-vue": "^9.9.0",
"happy-dom": "^8.2.2",
"pathe": "^1.0.0",
"postcss": "^8.4.21",
"postcss-nesting": "^11.1.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.9.5",
"vite": "^4.0.4",
"vite-plugin-dts": "^1.7.2",
"vite-plugin-vue-type-imports": "^0.2.4",
"vitepress": "^1.0.0-alpha.15",
"vitest": "^0.28.3",
"vue-tsc": "^1.0.24"
}
}