forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.5 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
{
"name": "@lit-labs/ssr-client",
"version": "1.0.1",
"description": "Client package for @lit-labs/ssr.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/ssr-client"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"typings": "index.d.ts",
"directories": {
"test": "test"
},
"exports": {
".": {
"development": "./development/index.js",
"default": "./index.js"
},
"./directives/render-light.js": {
"development": "./development/directives/render-light.js",
"default": "./directives/render-light.js"
}
},
"files": [
"/development/",
"!/development/test/",
"/directives/",
"/index.{d.ts,d.ts.map,js,js.map}"
],
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"build:ts:types": "wireit",
"build:rollup": "wireit",
"checksize": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts",
"build:ts:types",
"build:rollup",
"../../lit:build"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"dependencies": [
"../../lit:build:ts:types"
],
"files": [
"src/**/*.ts",
"tsconfig.json"
],
"output": [
"development",
"tsconfig.tsbuildinfo"
]
},
"build:ts:types": {
"command": "treemirror development . \"**/*.d.ts{,.map}\"",
"dependencies": [
"../../internal-scripts:build",
"build:ts"
],
"files": [],
"output": [
"*.d.ts{,.map}",
"directives/*.d.ts{,.map}"
]
},
"build:rollup": {
"command": "rollup -c",
"dependencies": [
"build:ts"
],
"files": [
"rollup.config.js",
"../../../rollup-common.js"
],
"output": [
"index.js{,.map}",
"directives/*.js{,.map}"
]
},
"checksize": {
"command": "rollup -c --environment=CHECKSIZE",
"dependencies": [
"build:ts"
],
"files": [
"rollup.config.js",
"../../../rollup-common.js"
],
"output": []
}
},
"author": "Google LLC",
"devDependencies": {
"@lit-internal/scripts": "^1.0.0"
},
"dependencies": {
"lit": "^2.0.0",
"lit-html": "^2.0.0",
"@lit/reactive-element": "^1.0.0"
},
"publishConfig": {
"access": "public"
}
}