-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
63 lines (63 loc) · 1.6 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
{
"name": "@custom-elements-manifest/to-markdown",
"version": "0.1.0",
"description": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/custom-elements-manifest.git",
"directory": "packages/to-markdown"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/custom-elements-manifest",
"types": "types/main.d.ts",
"bugs": {
"url": "https://github.com/open-wc/custom-elements-manifest"
},
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "npm run build",
"build": "npm run build:browser && npm run build:cjs",
"build:browser": "esbuild index.js --outfile=dist/browser.js --format=esm --bundle --minify",
"build:cjs": "esbuild index.js --outfile=dist/index.cjs --format=cjs --bundle",
"test": "asdgf"
},
"files": [
"*.d.ts",
"*.js",
"lib/**/*",
"dist/**/*"
],
"keywords": [
"custom-elements",
"custom-elements-json",
"custom-elements-manifest",
"customelements",
"webcomponents",
"customelementsjson",
"customelementsmanifest",
"markdown",
"md"
],
"contributors": [
"Pascal Schilp <[email protected]>",
"Benny Powers <[email protected]>"
],
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs",
"browser": "./dist/browser.js"
}
},
"dependencies": {
"mdast-builder": "^1.1.1",
"mdast-util-from-markdown": "^1.0.4",
"mdast-util-gfm": "^1.0.0",
"mdast-util-to-markdown": "^1.0.1",
"remark-gfm": "^1.0.0",
"remark-stringify": "^9.0.1",
"unified": "^9.2.1"
}
}