-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@ueberbit/components",
"type": "module",
"version": "0.0.1",
"description": "UEBERBIT Components Library",
"author": {
"name": "UEBERBIT GmbH",
"url": "https://ueberbit.de"
},
"license": "MIT",
"homepage": "https://github.com/ueberbit/UElements",
"keywords": [
"Component Library"
],
"exports": {
".": "./src/index.js",
"./*": "./src/components/*.js"
},
"files": [
"data",
"src",
"types"
],
"scripts": {
"dev": "pnpm -r dev",
"lint": "eslint .",
"build": "pnpm \"/^build:.*/\"",
"build:types": "tsc",
"build:wca": "wca analyze \"src/**/*.js\" --outFiles data/custom-element-manifest.json",
"experimental:cem": "cem analyze --globs \"src/**/*.js\" --outdir data --packagejson --dev"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.4",
"@ueberbit/eslint-config": "0.7.0-beta.5",
"typescript": "^5.8.3",
"web-component-analyzer": "^2.0.0"
},
"customElements": "data/custom-elements.json"
}