-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "@jop-software/astro-cookieconsent",
"version": "3.0.1",
"description": "vanilla-cookieconsent for astro",
"type": "module",
"license": "GPL-3.0-or-later",
"types": "./dist/main.d.ts",
"keywords": [
"astro-integration",
"astro-component",
"cookieconsent",
"consent",
"tracking",
"gdpr"
],
"contributors": [
{
"name": "Johannes Przymusinski",
"email": "[email protected]",
"url": "https://jop-software.de"
},
{
"name": "Artur Bauer"
}
],
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/astro-cookieconsent.es.js",
"require": "./dist/astro-cookieconsent.umd.js"
}
},
"main": "./dist/astro-cookieconsent.umd.js",
"module": "./dist/astro-cookieconsent.es.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"build:watch": "vite build --watch",
"dev": "vite",
"prettier:check": "prettier --check src",
"prettier:write": "prettier --write src"
},
"devDependencies": {
"astro": "^1.8.0",
"prettier": "^2.7.1",
"typescript": "^4.9.4",
"vite": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jop-software/astro-cookieconsent"
},
"peerDependencies": {
"vanilla-cookieconsent": "^3.0.0"
}
}