-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.75 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
{
"name": "@lit-labs/ssr-react",
"version": "0.3.0",
"publishConfig": {
"access": "public"
},
"description": "Lit SSR integration for React",
"license": "BSD-3-Clause",
"author": "Google LLC",
"homepage": "https://github.com/lit/lit/tree/main/packages/labs/ssr-react",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/ssr-react"
},
"main": "index.js",
"typings": "index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"node": "./node/index.js",
"default": "./index.js"
},
"./enable-lit-ssr.js": {
"types": "./enable-lit-ssr.d.ts",
"node": "./node/enable-lit-ssr.js",
"default": "./enable-lit-ssr.js"
},
"./jsx-dev-runtime": {
"types": "./jsx-dev-runtime.d.ts",
"node": "./node/jsx-dev-runtime.js",
"default": "./jsx-dev-runtime.js"
},
"./jsx-runtime": {
"types": "./jsx-runtime.d.ts",
"node": "./node/jsx-runtime.js",
"default": "./jsx-runtime.js"
}
},
"files": [
"/lib/",
"/node/",
"/enable-lit-ssr.{d.ts,d.ts.map,js,js.map}",
"/index.{d.ts,d.ts.map,js,js.map}",
"/jsx-dev-runtime.{d.ts,d.ts.map,js,js.map}",
"/jsx-runtime.{d.ts,d.ts.map,js,js.map}"
],
"dependencies": {
"@lit-labs/ssr": "^3.2.2",
"@lit-labs/ssr-client": "^1.1.7"
},
"peerDependencies": {
"@types/react": "17 || 18 || 19",
"react": "17 || 18 || 19"
},
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"test": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"dependencies": [
"../ssr:build:ts",
"../ssr-client:build",
"../react:build",
"../../lit:build"
],
"files": [
"src/**/*.ts{,x}",
"tsconfig.json"
],
"output": [
"lib/",
"node/",
"test/",
"enable-lit-ssr.{d.ts,d.ts.map,js,js.map}",
"index.{d.ts,d.ts.map,js,js.map}",
"jsx-dev-runtime.{d.ts,d.ts.map,js,js.map}",
"jsx-runtime.{d.ts,d.ts.map,js,js.map}",
"tsconfig.tsbuildinfo"
]
},
"test": {
"command": "uvu test _test.js$",
"files": [],
"output": [],
"dependencies": [
"build"
]
}
},
"devDependencies": {
"@lit/react": "1.0.6",
"@types/node": "^20.11.25",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"lit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uvu": "^0.5.6"
},
"keywords": [
"lit",
"lit-element",
"lit-ssr",
"next",
"react",
"ssr",
"web components"
]
}