-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "rehype-prism",
"version": "2.3.3",
"description": "The unified plugin used to highlight code block in html with Prism",
"keywords": [
"rehype",
"rehyper",
"prism",
"highlight",
"code",
"unified",
"markdown",
"html",
"remark",
"highlighting",
"syntax",
"syntax-highlighting",
"plugin"
],
"homepage": "https://github.com/Val-istar-Guo/rehype-prism#readme",
"bugs": {
"url": "https://github.com/Val-istar-Guo/rehype-prism/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Val-istar-Guo/rehype-prism.git"
},
"packageManager": "pnpm@8.10.1",
"license": "MIT",
"author": "Val-istar-Guo <val.istar.guo@gmail.com>",
"type": "module",
"main": "dist/esm/src/index.js",
"types": "dist/esm/src/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "npm run clean && ./build/build.sh",
"clean": "rm -rf ./dist/*",
"dev": "npm run clean && ./build/watch.sh",
"prepare": "ts-patch install -s && is-ci || husky",
"prepublishOnly": "npm run build",
"release": "standard-version",
"release:alpha": "standard-version --prerelease alpha",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"hastscript": "^8.0.0",
"prismjs": "^1.29.0",
"rehype-parse": "^9.0.1",
"unist-util-is": "^6.0.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@buka/eslint-config": "^2.1.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@jest/globals": "^29.7.0",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.8.2",
"@types/prismjs": "^1.26.5",
"@types/unist": "^3.0.3",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "5.4.5",
"typescript-transform-paths": "^3.5.1",
"unified": "^11.0.5"
},
"peerDependencies": {
"unified": "^10 || ^11"
}
}