This repository has been archived by the owner on Nov 19, 2022. It is now read-only.
forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
164 lines (164 loc) · 4.06 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "@lit-labs/ssr",
"type": "module",
"version": "2.2.3",
"publishConfig": {
"access": "public"
},
"description": "SSR for Lit",
"main": "index.js",
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"demo:vm-modules": "wireit",
"demo:global": "wireit",
"test": "wireit",
"test:integration": "wireit",
"test:integration:dev": "wireit",
"test:integration:prod": "wireit",
"test:unit": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts",
"../ssr-client:build",
"../../lit:build"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"dependencies": [
"../ssr-client:build:ts:types",
"../../lit:build:ts:types",
"../../lit-html:build:ts:types",
"../../lit-element:build:ts:types"
],
"files": [
"src/**/*.ts",
"custom_typings/**/*.ts",
"tsconfig.json"
],
"output": [
"lib/",
"test/",
"demo/",
"index.{d.ts,d.ts.map,js,js.map}",
"tsconfig.tsbuildinfo"
]
},
"demo:vm-modules": {
"command": "node --experimental-vm-modules ./demo/vm-modules/server.js",
"dependencies": [
"build"
],
"files": [],
"output": []
},
"demo:global": {
"command": "node ./demo/global/server.js",
"dependencies": [
"build"
],
"files": [],
"output": []
},
"test": {
"dependencies": [
"test:unit",
"test:integration"
]
},
"test:unit": {
"command": "node --experimental-vm-modules ./test/all-tests.js",
"#comment": [
"These unit tests use the default export condition, so they require a",
"full build of all dependencies."
],
"dependencies": [
"build"
],
"files": [],
"output": []
},
"test:integration": {
"dependencies": [
"test:integration:dev",
"test:integration:prod"
]
},
"test:integration:dev": {
"command": "MODE=dev NODE_OPTIONS=--experimental-vm-modules node ../../tests/run-web-tests.js",
"#comment": [
"TODO(aomarks) It seems like this should only depend on build:ts",
"but it errors on missing .js files that come from core library Rollup builds"
],
"dependencies": [
"build",
"../../tests:build"
],
"files": [
"web-test-runner.config.js",
"../../tests/web-test-runner.config.js"
],
"output": []
},
"test:integration:prod": {
"command": "MODE=prod NODE_OPTIONS=--experimental-vm-modules node ../../tests/run-web-tests.js",
"dependencies": [
"build",
"../../tests:build"
],
"files": [
"web-test-runner.config.js",
"../../tests/web-test-runner.config.js"
],
"output": []
}
},
"files": [
"/lib/",
"/index.{d.ts,d.ts.map,js,js.map}"
],
"author": "Google LLC",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/ssr"
},
"devDependencies": {
"@koa/router": "^12.0.0",
"@open-wc/testing": "^3.0.0-next.1",
"@open-wc/testing-karma": "^4.0.9",
"@types/command-line-args": "^5.0.0",
"@types/koa": "^2.0.49",
"@types/koa-cors": "*",
"@types/koa-static": "^4.0.1",
"@types/koa__router": "^8.0.2",
"@types/parse5": "^6.0.1",
"@types/resolve": "^1.20.2",
"@webcomponents/template-shadowroot": "^0.1.0",
"command-line-args": "^5.1.1",
"deepmerge": "^4.2.2",
"koa": "^2.7.0",
"koa-cors": "^0.0.16",
"koa-node-resolve": "^1.0.0-pre.5",
"koa-static": "^5.0.0"
},
"dependencies": {
"@lit-labs/ssr-client": "^1.0.0",
"@lit/reactive-element": "^1.4.0",
"@types/node": "^16.0.0",
"lit": "^2.3.0",
"lit-element": "^3.1.0",
"lit-html": "^2.3.0",
"node-fetch": "^3.2.8",
"parse5": "^6.0.1",
"resolve": "^1.10.1"
},
"engines": {
"node": ">=13.9.0"
}
}