-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "markdownld",
"version": "0.2.0",
"description": "RDF Linked Data in Markdown",
"keywords": [
"linked-data",
"rdf",
"markdown"
],
"homepage": "https://github.com/ozekik/markdown-ld",
"repository": "https://github.com/ozekik/markdown-ld",
"license": "MIT",
"author": "Kentaro Ozeki <[email protected]>",
"main": "dist/markdownld.js",
"module": "dist/markdownld.mjs",
"bin": {
"markdownld": "bin/cli.mjs"
},
"files": [
"dist",
"bin"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/markdownld.mjs",
"require": "./dist/markdownld.js"
}
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"prepack": "npm run build"
},
"dependencies": {
"@frogcat/ttl2jsonld": "0.0.9",
"remark-parse": "^11.0.0",
"unified": "^11.0.4",
"unified-args": "^11.0.1",
"unist-util-find": "^3.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-is": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"rollup": "^4.16.4"
}
}