-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "wc-menu-button",
"version": "6.0.0",
"description": "A simple, animating menu button built as a Web Component",
"keywords": [
"web component",
"hamburger",
"menu",
"animating",
"web-component",
"custom-element"
],
"repository": {
"type": "git",
"url": "https://github.com/wes-goulet/wc-menu-button"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wes-goulet/wc-menu-button"
},
"homepage": "https://github.com/wes-goulet/wc-menu-button",
"module": "wc-menu-button.js",
"main": "wc-menu-button.js",
"source": "wc-menu-button.js",
"types": "wc-menu-button.d.ts",
"scripts": {
"check:types": "tsc --noEmit --emitDeclarationOnly false",
"generate:types": "tsc",
"generate:manifest": "custom-elements-manifest analyze --globs 'wc-menu-button.js'",
"lint": "npm run format:check && npm run lint:size",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint:size": "npx --yes bundlesize"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.8",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"files": [
"wc-menu-button.js",
"wc-menu-button.d.ts",
"custom-elements.json"
],
"exports": {
".": {
"import": "./wc-menu-button.js",
"default": "./wc-menu-button.js"
}
},
"bundlesize": [
{
"path": "./wc-menu-button.js",
"maxSize": "1.29 KB",
"compression": "brotli"
}
],
"engines": {
"node": ">=18.18.0"
},
"volta": {
"node": "18.18.0"
},
"customElements": "custom-elements.json"
}