-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 KB
/
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
36
37
38
39
40
41
{
"$schema": "https://json.schemastore.org/package.json",
"name": "markdot",
"module": "index.ts",
"type": "module",
"version": "0.0.11",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mdast": "4.0.4",
"@types/mustache": "4.2.5",
"bun-types": "1.2.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"arg": "5.0.2",
"chalk-template": "1.1.0",
"immer": "10.1.1",
"mustache": "4.2.0",
"remark-breaks": "4.0.0",
"remark-frontmatter": "5.0.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"smol-toml": "1.3.1",
"unified": "11.0.5",
"unist-util-flat-filter": "2.0.0",
"unist-util-visit": "5.0.0",
"xstate": "5.17.3",
"yaml": "2.7.0",
"zod": "3.24.1"
},
"scripts": {
"markdot": "bun run ./scripts/markdot.ts",
"test": "bun test",
"build": "bun build ./scripts/markdot.ts --compile --minify --outfile markdot",
"check": "biome check . && tsc",
"check:fix": "biome check --apply-unsafe . && tsc",
"ci": "biome ci . && tsc && bun test"
}
}