-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.55 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "md-code-image-cli",
"version": "0.1.5",
"description": "Generate syntax-highlighted PNG images from Markdown fenced code blocks.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pjstack-dev/md-code-image-cli"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"md-code-image": "./dist/cli/bin.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"keywords": [
"markdown",
"code",
"image",
"png",
"shiki",
"satori",
"cli"
],
"files": [
"dist",
"fonts",
"LICENSE",
"LICENSES",
"README.md"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.json",
"test": "vitest run",
"dev": "tsx src/cli/index.ts",
"version:bump": "node scripts/bump-version.mjs",
"prepublishOnly": "npm test && npm run build"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"commander": "^14.0.1",
"react": "^19.1.1",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"satori": "^0.18.3",
"shiki": "^3.13.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/noto-sans-sc": "^5.2.9",
"@types/node": "^24.5.2",
"@types/react": "^19.1.13",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}