-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "posthtml-shiki",
"description": "PostHTML plugin for highlighting code blocks with Shiki.",
"version": "1.5.0",
"license": "MIT",
"author": "Cosmin Popovici (https://github.com/cossssmin)",
"bugs": "https://github.com/posthtml/posthtml-shiki/issues",
"homepage": "https://github.com/posthtml/posthtml-shiki",
"repository": "posthtml/posthtml-shiki",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"scripts": {
"dev": "vitest",
"build": "unbuild",
"release": "npx np",
"prepack": "unbuild",
"pretest": "npm run lint",
"lint": "biome lint ./lib ./test",
"test": "vitest run --coverage"
},
"keywords": [
"html",
"posthtml",
"posthtml-plugin",
"shiki",
"highlight",
"syntax",
"code"
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@vitest/coverage-v8": "^2.0.1",
"posthtml": "^0.16.6",
"unbuild": "^2.0.0",
"vitest": "^2.0.1"
},
"dependencies": {
"posthtml-attrs-parser": "^1.1.0",
"posthtml-render": "^3.0.0",
"shiki": "^1.10.0"
}
}