-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
84 lines (84 loc) · 1.67 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
{
"name": "ts-lit-plugin",
"version": "2.0.2",
"description": "Typescript plugin that adds type checking and code completion to lit-html",
"author": "runem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/runem/lit-analyzer.git"
},
"keywords": [
"lit-html",
"lit",
"lit-element",
"javascript",
"typescript",
"web components",
"web",
"components",
"tagged",
"template"
],
"scripts": {
"watch": "tsc --watch",
"build": "wireit",
"test": "wireit",
"readme": "readme generate -i readme.blueprint.md -c readme.config.json"
},
"wireit": {
"build": {
"dependencies": [
"../lit-analyzer:build"
],
"command": "tsc --build --pretty",
"files": [
"src/**/*",
"tsconfig.json"
],
"output": [
"lib",
"./tsbuildinfo"
],
"clean": "if-file-deleted"
},
"test": {
"dependencies": [
"build"
]
}
},
"main": "index.js",
"files": [
"/lib/",
"/html-documentation/"
],
"dependencies": {
"lit-analyzer": "^2.0.1",
"web-component-analyzer": "^2.0.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"esbuild": "^0.14.34",
"rimraf": "^3.0.2",
"typescript": "~5.2.2",
"wireit": "^0.1.1"
},
"contributors": [
{
"name": "Rune Mehlsen",
"url": "https://twitter.com/runemehlsen",
"img": "https://avatars2.githubusercontent.com/u/5372940?s=460&v=4"
},
{
"name": "Andreas Mehlsen",
"url": "https://twitter.com/andreasmehlsen",
"img": "https://avatars1.githubusercontent.com/u/6267397?s=460&v=4"
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/runem/lit-analyzer/blob/master/CONTRIBUTING.md"
}
]
}