-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.14 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.14 KB
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
84
85
86
87
88
89
90
91
92
93
{
"author": "Jonas Thelemann",
"contributors": [
"Dario Ferderber <dario.ferderber@broj42.com>"
],
"dependencies": {
"@nuxt/kit": "^4.0.0",
"css-vars-ponyfill": "^2.4.8",
"defu": "^6.1.4",
"string-replace-loader": "^3.1.0"
},
"description": "Nuxt Cookie Control Module",
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@dargmuesli/nuxt-cookie-control": "link:",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.3.1",
"eslint": "10.0.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"nuxt": "4.3.1",
"prettier": "3.8.1",
"vite": "8.0.0",
"vue": "3.5.30",
"vue-tsc": "3.2.5",
"webpack": "5.105.4"
},
"engines": {
"node": ">=16"
},
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime/*": "./dist/runtime/*"
},
"files": [
"dist/**/*"
],
"funding": {
"url": "https://github.com/sponsors/dargmuesli"
},
"keywords": [
"nuxt cookie control",
"nuxt gdpr",
"nuxt cookie consent",
"nuxt gdpr consent"
],
"license": "MIT",
"maintainers": [
"Jonas Thelemann"
],
"name": "@dargmuesli/nuxt-cookie-control",
"packageManager": "pnpm@10.32.1",
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"unrs-resolver"
]
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/dargmuesli/nuxt-cookie-control",
"resolutions": {
"@nuxt/kit": "^4.0.0"
},
"scripts": {
"build": "nuxt-module-build build",
"dev": "pnpm --dir playground run dev",
"lint": "pnpm run lint:js && pnpm run lint:ts",
"lint:fix": "pnpm run lint:js --fix .",
"lint:js": "eslint --cache",
"lint:ts": "vue-tsc --noEmit",
"prepack": "pnpm build",
"prepare": "husky && nuxt-module-build prepare"
},
"type": "module",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"version": "9.1.18"
}