-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.39 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.39 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@webcomponents/internal-site-client",
"private": true,
"version": "0.0.0",
"description": "Client JavaScript used on webcomponents.org",
"author": "Google LLC",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "wireit",
"build:dev": "wireit",
"build:prod": "wireit",
"build:types": "wireit",
"check": "wireit",
"check:types": "wireit",
"check:lit-analyzer": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:dev",
"build:prod",
"build:types"
]
},
"build:dev": {
"command": "find src -name \"*.ts\" | xargs esbuild --color --outdir=lib",
"files": [
"src/**/*.ts"
],
"output": [
"lib/**/*.js"
],
"dependencies": [
"../catalog-api:build",
"../custom-elements-manifest-tools:build"
],
"clean": "if-file-deleted"
},
"build:prod": {
"command": "esbuild --color --outdir=bundled --format=esm --bundle --splitting --minify src/pages/*/boot.ts",
"files": [
"src/**/*.ts"
],
"output": [
"bundled"
],
"dependencies": [
"../catalog-api:build",
"../custom-elements-manifest-tools:build"
],
"clean": "if-file-deleted"
},
"build:types": {
"command": "tsc --pretty",
"files": [
"src/**/*.ts"
],
"output": [
"lib/**/*.d.ts",
"tsconfig.tsbuildinfo"
],
"dependencies": [
"../catalog-api:build",
"../custom-elements-manifest-tools:build"
],
"clean": "if-file-deleted"
},
"check": {
"dependencies": [
"check:types",
"check:lit-analyzer"
]
},
"check:types": {
"dependencies": [
"build:types"
]
},
"check:lit-analyzer": {
"command": "lit-analyzer --strict --color --rules.no-unknown-tag-name=error --rules.no-missing-import=error --rules.no-missing-element-type-definition=error --rules.no-unknown-attribute=error --rules.no-unknown-property=error --rules.no-unknown-event=error --rules.no-unknown-slot=error \"src/**/*.ts\"",
"files": [
"src/**/*.ts"
],
"output": []
}
},
"dependencies": {
"@lit-labs/task": "^2.0.0",
"@material/web": "^1.0.0-pre.1",
"@webcomponents/catalog-api": "^0.0.0",
"lit": "^2.6.0",
"lit-analyzer": "^1.2.1"
}
}