-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 957 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 957 Bytes
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": "@dweidner/opt-in-element",
"description": "A custom element to embed third party content with user consent",
"homepage": "https://github.com/dweidner/opt-in-element#readme",
"license": "ISC",
"version": "1.0.1",
"type": "module",
"main": "src/opt-in.js",
"author": {
"name": "Daniel Weidner",
"email": "hallo@danielweidner.de",
"url": "https://danielweidner.de/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dweidner/opt-in-element.git"
},
"bugs": {
"url": "https://github.com/dweidner/opt-in-element/issues"
},
"scripts": {
"start": "http-server .",
"lint": "eslint .",
"format": "eslint --fix ."
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"eslint": "^9.30.0",
"eslint-plugin-jsdoc": "^51.3.1",
"eslint-plugin-wc": "^3.0.1",
"globals": "^16.3.0",
"http-server": "^14.1.1"
},
"publishConfig": {
"access": "public"
}
}