forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 3.72 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
{
"name": "@lit-labs/motion",
"version": "1.0.3",
"description": "Lit directives for making things move.",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/motion"
},
"type": "module",
"main": "index.js",
"module": "index.js",
"typings": "index.d.ts",
"directories": {
"test": "test"
},
"exports": {
".": {
"types": "./development/index.d.ts",
"development": "./development/index.js",
"default": "./index.js"
}
},
"files": [
"/development/",
"!/development/test/",
"/index.{d.ts,d.ts.map,js,js.map}",
"/animate.{d.ts,d.ts.map,js,js.map}",
"/animate-controller.{d.ts,d.ts.map,js,js.map}",
"/position.{d.ts,d.ts.map,js,js.map}"
],
"scripts": {
"start": "wireit",
"build": "wireit",
"build:ts": "wireit",
"build:ts:types": "wireit",
"build:rollup": "wireit",
"test": "wireit",
"test:dev": "wireit",
"test:prod": "wireit",
"checksize": "wireit"
},
"wireit": {
"start": {
"command": "web-dev-server -- --node-resolve --watch --preserve-sym-links --open demo/index.html",
"#comment": "TODO(aomarks) Depend only on build:ts, but needs export conditions",
"dependencies": [
"build"
]
},
"build": {
"dependencies": [
"build:ts",
"build:ts:types",
"build:rollup",
"../../lit:build"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"dependencies": [
"../../lit:build:ts:types"
],
"clean": "if-file-deleted",
"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}",
"test/**/*.d.ts{,.map}"
]
},
"build:rollup": {
"command": "rollup -c",
"dependencies": [
"build:ts"
],
"files": [
"rollup.config.js",
"../../../rollup-common.js"
],
"output": [
"index.js{,.map}",
"animate.js{,.map}",
"animate-controller.js{,.map}",
"position.js{,.map}",
"test/**/*.js{,.map}"
]
},
"checksize": {
"command": "rollup -c --environment=CHECKSIZE",
"dependencies": [
"build:ts"
],
"files": [
"rollup.config.js",
"../../../rollup-common.js"
],
"output": []
},
"test": {
"dependencies": [
"test:dev",
"test:prod"
]
},
"test:dev": {
"command": "MODE=dev node ../../tests/run-web-tests.js \"development/**/*_test.js\" --config ../../tests/web-test-runner.config.js",
"dependencies": [
"build",
"../../tests:build"
],
"env": {
"BROWSERS": {
"external": true
}
},
"files": [],
"output": []
},
"test:prod": {
"command": "MODE=prod node ../../tests/run-web-tests.js \"development/**/*_test.js\" --config ../../tests/web-test-runner.config.js",
"dependencies": [
"build",
"../../tests:build"
],
"env": {
"BROWSERS": {
"external": true
}
},
"files": [],
"output": []
}
},
"author": "Google LLC",
"devDependencies": {
"@types/trusted-types": "^2.0.2",
"@lit-internal/scripts": "^1.0.0"
},
"dependencies": {
"lit": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}