-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 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
{
"name": "mdld-parse",
"version": "0.9.4",
"description": "A standards-compliant parser for **MD-LD (Markdown-Linked Data)** — a human-friendly RDF authoring format that extends Markdown with semantic annotations.",
"type": "module",
"packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"main": "index.js",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"test": "node tests/index.js",
"dev": "vite dev",
"build": "vite build && vite build --config vite.config.lib.js && cp -r docs/ dist/docs/ && cp -r examples/ dist/examples/ && cp -r spec/ dist/spec/ && cp -r README.md dist/README.md"
},
"keywords": [
"mdld",
"markdown",
"rdf",
"semantic-web",
"linked-data",
"n3",
"rdfjs",
"browser",
"web-worker",
"parser",
"prefix-folding",
"curie",
"iri-authoring"
],
"author": "davay42",
"repository": {
"type": "git",
"url": "git+https://github.com/davay42/mdld-parse.git"
},
"homepage": "https://mdld.js.org",
"bugs": {
"url": "https://github.com/davay42/mdld-parse/issues"
},
"devDependencies": {
"@unocss/extractor-pug": "^66.6.8",
"@vitejs/plugin-vue": "^6.0.6",
"@vueuse/core": "^14.3.0",
"codejar": "^4.3.0",
"markdown-it": "^14.1.1",
"n3": "^2.0.3",
"shiki": "^4.0.2",
"unocss": "^66.6.8",
"vite": "^8.0.10",
"vite-plugin-singlefile": "^2.3.3",
"vscode-textmate": "^9.3.2",
"vue": "^3.6.0-beta.10"
}
}