-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 2.03 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
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
68
69
70
71
72
73
{
"name": "mdbox",
"version": "0.1.1",
"description": "Just simple markdown utils!",
"repository": "unjs/mdbox",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
"./lib/*": "./lib/*.mjs",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./parser": {
"types": "./dist/parser.d.ts",
"import": "./dist/parser.mjs",
"require": "./dist/parser.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"lib",
"!lib/*.ts",
"parser.d.ts"
],
"scripts": {
"bench:bun": "bun --bun ./test/parse.bench.ts",
"bench:deno": "deno bench -A --unstable-sloppy-imports test/parse.bench.ts",
"bench:node": "vitest bench",
"build": "automd && unbuild",
"dev": "vitest dev -u",
"lint": "eslint --cache . && prettier -c src test",
"lint:fix": "eslint --cache . --fix && prettier -c src test -w",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"md4w": "^0.2.6"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"eslint-config-unjs": "^0.4.2",
"jiti": "^2.4.2",
"markdown-it": "^14.1.0",
"mdast-util-from-markdown": "^2.0.2",
"mdast-util-gfm": "^3.0.0",
"micromark-extension-gfm": "^3.0.0",
"mitata": "^1.0.23",
"ohash": "^1.1.4",
"prettier": "^3.4.2",
"punycode.js": "^2.3.1",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}