-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.54 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.54 KB
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
{
"name": "@api-viewer/docs",
"version": "1.0.0-pre.10",
"publishConfig": {
"access": "public"
},
"description": "API documentation viewer for Web Components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/api-viewer-element.git",
"directory": "packages/api-docs"
},
"author": "open-wc",
"bugs": {
"url": "https://github.com/open-wc/api-viewer-element/issues"
},
"main": "lib/api-docs.js",
"module": "lib/api-docs.js",
"type": "module",
"scripts": {
"analyze": "cem analyze --litelement --globs 'src/*.ts'",
"size": "size-limit"
},
"files": [
"custom-elements.json",
"lib"
],
"keywords": [
"API",
"documentation",
"web-components"
],
"dependencies": {
"@api-viewer/common": "^1.0.0-pre.10",
"@api-viewer/tabs": "^1.0.0-pre.10",
"@types/dompurify": "^2.3.1",
"@types/marked": "^4.0.0",
"dompurify": "^3.4.0",
"lit": "^2.0.0",
"marked": "^4.0.10",
"tslib": "^2.3.1"
},
"contributors": [
{
"name": "Serhii Kulykov",
"email": "iamkulykov@gmail.com",
"url": "https://twitter.com/serhiikulykov"
},
{
"name": "Benny Powers",
"email": "web@bennypowers.com",
"url": "https://twitter.com/PowersBenny"
},
{
"name": "Mikhail Bashkirov",
"email": "bashmish@gmail.com",
"url": "https://twitter.com/bashmish"
}
],
"customElements": "custom-elements.json",
"size-limit": [
{
"path": "lib/api-docs.js",
"limit": "35 KB"
}
]
}