-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.22 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.22 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
{
"name": "md-xformer",
"version": "0.1.0",
"description": "A CLI tool that converts Markdown into template-based HTML.",
"license": "MIT",
"author": "shm11C3",
"repository": {
"type": "git",
"url": "https://github.com/shm11C3/md-xformer.git"
},
"keywords": [
"markdown",
"html",
"cli",
"templates",
"converter"
],
"type": "module",
"bin": {
"md-xformer": "dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "node dist/cli.js",
"prepack": "npm run build",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run --coverage tests/unit",
"pretest:e2e": "npm run build",
"test:e2e": "vitest run tests/e2e",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "biome format --write",
"lint": "biome check",
"lint:ci": "biome ci"
},
"dependencies": {
"highlight.js": "^11.11.1",
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"@vitest/coverage-v8": "^4.0.16",
"vitest": "^4.0.16"
}
}