-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.35 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
{
"name": "@zazuko/trifid-markdown-content",
"version": "2.0.5",
"description": "Trifid plugin to handle Markdown files",
"main": "src/index.js",
"type": "module",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "c8 --all --reporter=lcovonly --reporter=text node --test **/*.test.js",
"prebuild": "rimraf dist/",
"build": "tsc",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/zazuko/trifid.git",
"directory": "packages/markdown-content"
},
"bugs": {
"url": "https://github.com/zazuko/trifid/issues"
},
"license": "Apache-2.0",
"author": {
"name": "Zazuko GmbH",
"url": "https://zazuko.com/"
},
"keywords": [
"trifid",
"trifid-plugin",
"markdown-content"
],
"dependencies": {
"hast-util-select": "^6.0.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
"unified": "^11.0.5"
},
"files": [
"src",
"views",
"dist",
"CHANGELOG.md"
],
"devDependencies": {
"@types/node": "^22.10.2",
"c8": "^10.1.3",
"rimraf": "^6.0.1",
"trifid-core": "^5.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}