-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 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
{
"name": "@truyman/md",
"version": "0.2.1",
"private": false,
"description": "Preview Markdown in your browser with live reload and Mermaid support.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bentruyman/md.git"
},
"bin": {
"md": "dist/index.js"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node && tsc -p tsconfig.build.json",
"format": "oxfmt && oxlint --fix",
"lint": "oxfmt --check && oxlint .",
"prepare": "husky",
"prepublishOnly": "bun run build",
"release": "release-it",
"start": "bun run dist/index.js",
"test": "bun test",
"typecheck": "tsc",
"verify": "bun run lint && bun run typecheck && bun test && bun run build"
},
"dependencies": {
"@truyman/cli": "^1",
"highlight.js": "^11.11.1",
"marked": "^16.4.1",
"mermaid": "^10.9.1",
"node-emoji": "^2.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@types/bun": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"release-it": "^19.0.5",
"typescript": "~5.9"
},
"overrides": {
"conventional-changelog-conventionalcommits": "8.0.0"
},
"lint-staged": {
"*": [
"oxfmt --no-error-on-unmatched-pattern",
"oxlint --fix"
]
},
"engines": {
"node": ">=24"
}
}