drab 5.0.0-beta.2 → 5.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +20 -3
package/package.json
CHANGED
@@ -1,13 +1,30 @@
|
|
1
1
|
{
|
2
2
|
"name": "drab",
|
3
3
|
"description": "A headless custom element library",
|
4
|
-
"version": "5.0.0-beta.
|
4
|
+
"version": "5.0.0-beta.3",
|
5
5
|
"homepage": "https://drab.robino.dev",
|
6
6
|
"license": "MIT",
|
7
7
|
"author": {
|
8
8
|
"name": "Ross Robino",
|
9
9
|
"url": "https://robino.dev"
|
10
10
|
},
|
11
|
+
"keywords": [
|
12
|
+
"web components",
|
13
|
+
"custom elements",
|
14
|
+
"animate",
|
15
|
+
"contextmenu",
|
16
|
+
"details",
|
17
|
+
"youtube",
|
18
|
+
"breakpoint",
|
19
|
+
"dialog",
|
20
|
+
"popover",
|
21
|
+
"tablesort",
|
22
|
+
"copy",
|
23
|
+
"fullscreen",
|
24
|
+
"base",
|
25
|
+
"editor",
|
26
|
+
"share"
|
27
|
+
],
|
11
28
|
"repository": "github:rossrobino/drab",
|
12
29
|
"type": "module",
|
13
30
|
"types": "./index.d.ts",
|
@@ -133,8 +150,8 @@
|
|
133
150
|
"format": "prettier --write .",
|
134
151
|
"doc": "typedoc --out src/lib/docs --plugin typedoc-plugin-markdown src/package/index.ts --hideBreadcrumbs --hideInPageTOC --githubPages false --publicPath /docs/ && bun src/lib/scripts/doc/index.ts && bun format",
|
135
152
|
"copy": "cp package.json ./package && cp README.md ./package && cp LICENSE.md ./package",
|
136
|
-
"
|
137
|
-
"package": "bun
|
153
|
+
"json": "bun src/lib/scripts/packageJson/index.ts && prettier --write package.json",
|
154
|
+
"package": "bun json && tsup && bun copy",
|
138
155
|
"pub": "bun i && bun doc && bun package && npm publish --access public --tag beta ./package"
|
139
156
|
},
|
140
157
|
"devDependencies": {
|