-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.57 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.57 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
{
"name": "remark-hash-heading",
"version": "1.0.0",
"description": "A remark plugin to add hash symbols to headings",
"keywords": [
"heading",
"markdown",
"remark",
"remark-plugin",
"unified"
],
"homepage": "https://github.com/eetann/remark-hash-heading",
"bugs": {
"url": "https://github.com/eetann/remark-hash-heading/issues"
},
"license": "MIT",
"author": "eetann",
"repository": {
"type": "git",
"url": "https://github.com/eetann/remark-hash-heading.git"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "oxlint check",
"format": "oxfmt --write .",
"typecheck": "tsgo --noEmit",
"release": "bun run lint && bun run typecheck && bun run test && bun run build && bumpp",
"test": "bun test",
"test:watch": "bun test --watch"
},
"dependencies": {
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/mdast": "^4.0.4",
"@typescript/native-preview": "^7.0.0-dev.20251226.1",
"bumpp": "^10.3.2",
"oxfmt": "^0.20.0",
"oxlint": "^1.35.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1",
"tsdown": "^0.18.3"
},
"peerDependencies": {
"typescript": "^5"
}
}