-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.44 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
{
"private": true,
"name": "active-markdown",
"version": "0.4.2",
"description": "A tool for generating reactive documents from markdown source.",
"preferGlobal": true,
"type": "module",
"bin": {
"activemd": "./lib/main.js",
"activemd-dev": "./lib/main.js"
},
"scripts": {
"build-dist": "node ./scripts/build-dist.js",
"test": "run-p test:*",
"test:browser": "vitest --environment=happy-dom --run ./tests/browser/*.*",
"test:cli": "vitest --environment=node --run ./tests/cli/*.*"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"chartist": "^1.3.0",
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
"gray-matter": "^4.0.3",
"marked": "^14.0.0",
"marked-gfm-heading-id": "^4.1.0",
"prism-code-editor": "^3.4.0",
"rollup": "^4.21.2"
},
"devDependencies": {
"happy-dom": "^15.7.3",
"npm-run-all": "^4.1.5",
"vitest": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git://github.com/alecperkins/active-markdown.git"
},
"author": "Alec Perkins <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Alec Perkins",
"email": "[email protected]"
}
],
"homepage": "https://activemarkdown.alecperkins.net",
"keywords": [
"markdown",
"interactive",
"reactive",
"tangle",
"documents",
"literate code"
]
}