forked from lit/lit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.13 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
{
"name": "@lit-labs/eleventy-plugin-lit",
"version": "0.2.3",
"description": "Eleventy plugin for rendering Lit components.",
"author": "Google LLC",
"license": "BSD-3-Clause",
"homepage": "https://lit.dev/",
"repository": {
"type": "git",
"url": "https://github.com/lit/lit.git",
"directory": "packages/labs/eleventy-plugin-lit"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"default": "./index.js"
}
},
"files": [
"/index.{d.ts,d.ts.map,js,js.map}",
"/worker/worker.{d.ts,d.ts.map,js,js.map}",
"/worker/package.json"
],
"engines": {
"node": ">=12.16.0"
},
"scripts": {
"build": "wireit",
"build:ts": "wireit",
"build:demo": "wireit",
"serve:demo": "wireit",
"test": "wireit"
},
"wireit": {
"build": {
"dependencies": [
"build:ts",
"../ssr:build",
"../../lit:build"
]
},
"build:ts": {
"command": "tsc --build --pretty",
"dependencies": [
"../ssr:build:ts",
"../../lit:build:ts:types"
],
"files": [
"src",
"tsconfig.json"
],
"output": [
"index.{js,d.ts}",
"test",
"worker",
"*.tsbuildinfo",
"!test/__temp",
"!test/package.json",
"!worker/package.json"
],
"clean": "if-file-deleted"
},
"build:demo": {
"command": "cd demo && NODE_OPTIONS=--experimental-vm-modules eleventy",
"dependencies": [
"build"
],
"files": [
"demo"
]
},
"serve:demo": {
"command": "wds --watch --node-resolve --open demo/_site/test",
"dependencies": [
"build:demo"
],
"files": []
},
"test": {
"command": "uvu test/ \".*-test.js$\"",
"dependencies": [
"build"
],
"files": [],
"output": []
}
},
"dependencies": {
"@lit-labs/ssr": "^2.0.1",
"lit": "^2.3.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@webcomponents/template-shadowroot": "^0.1.0",
"rimraf": "^3.0.2"
}
}