-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 837 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 837 Bytes
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
{
"name": "@skxv/leafmark",
"version": "0.2.1",
"description": "Comprehensive Markdown to PDF and HTML builder powered by Pandoc.",
"type": "module",
"bin": {
"leafmark": "./lib/build.js",
"@skxv/leafmark": "./lib/build.js"
},
"files": [
"lib",
"src/*.lua",
"src/*.tex",
"src/*.latex",
"src/*.css",
"src/themes",
"src/csl",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/build.ts",
"leafmark": "tsx src/build.ts",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"chokidar": "^3.6.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/node": "^20.19.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}