-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"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 <kentaro.ozeki+dev@gmail.com>",
"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": "pnpm run build",
"test": "vitest run"
},
"dependencies": {
"@frogcat/ttl2jsonld": "0.0.9",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unified-args": "^11.0.1",
"unist-util-find": "^3.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-is": "^6.0.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-replace": "^5.0.7",
"rollup": "^4.55.1",
"vitest": "^2.1.9"
}
}