-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "mdflow",
"version": "2.35.5",
"module": "src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/johnlindquist/mdflow.git"
},
"bin": {
"mdflow": "./src/index.ts",
"md": "./src/index.ts"
},
"scripts": {
"test": "bun test --bail=1",
"md": "bun run src/index.ts",
"bundle": "bun run scripts/bundle.ts -o",
"bundle:core": "bun run scripts/bundle.ts --core -o",
"bundle:stdout": "bun run scripts/bundle.ts"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/mdast": "^4.0.4",
"fast-check": "^4.4.0",
"semantic-release": "^25.0.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/core": "^10.1.11",
"@inquirer/prompts": "^8.0.2",
"gpt-tokenizer": "^3.4.0",
"ignore": "^7.0.5",
"js-yaml": "^4.1.1",
"liquidjs": "^10.24.0",
"marked": "^17.0.1",
"marked-terminal": "^7.3.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"remark-parse": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"zod": "^4.1.13"
}
}