-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
83
{
"name": "@avensio/cookie-consent",
"version": "1.0.1",
"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/cookie-consent.css",
".": {
"import": "./dist/cookie-consent.es.js",
"require": "./dist/cookie-consent.cjs.js",
"types": "./dist/components/CookieConsent.vue.d.ts"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"browserslist": [
"last 6 versions"
],
"dependencies": {
"vue": "^3.5.13",
"vue-i18n": "^11.0.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.3",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.32.0",
"happy-dom": "^16.2.9",
"pathe": "^1.1.2",
"postcss": "^8.4.49",
"postcss-nesting": "^13.0.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vitepress": "^1.5.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
}
}