-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 854 Bytes
/
package.json
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
{
"name": "md2hype",
"module": "index.ts",
"type": "module",
"dependencies": {
"arg": "5.0.2",
"chalk-template": "1.1.0",
"rehype-stringify": "10.0.1",
"remark-breaks": "4.0.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"smol-toml": "1.3.1",
"unified": "11.0.5",
"unist-util-flat-filter": "2.0.0",
"yaml": "2.7.0",
"zod": "3.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"bun-types": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"run": "bun run ./src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile md2hype",
"test": "bun test",
"check": "biome check .",
"check:fix": "biome check --apply-unsafe .",
"ci": "biome ci ."
}
}