forked from zce/velite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.21 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
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "velite",
"version": "0.1.0-rc.3",
"description": "Turns Markdown / MDX, YAML, JSON, or other files into app's data layer with type-safe schema.",
"keywords": [
"contentlayer",
"headless-cms",
"data-layer",
"creative",
"content",
"velite",
"cli",
"zce"
],
"repository": "zce/velite",
"license": "MIT",
"author": "zce <w@zce.me> (https://zce.me)",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/velite.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && rollup -c",
"test": "node --import tsx --test test/*.ts",
"docs:dev": "cd docs && pnpm dev",
"docs:build": "cd docs && pnpm build",
"format": "prettier . --write"
},
"prettier": "@zce/prettier-config",
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,md}": "prettier --write"
},
"dependencies": {
"@mdx-js/mdx": "^3.0.1",
"esbuild": "^0.21.4",
"sharp": "^0.33.4",
"terser": "^5.31.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/micromatch": "^4.0.7",
"@types/node": "^20.12.12",
"@zce/prettier-config": "^0.4.0",
"chokidar": "^3.6.0",
"fast-glob": "^3.3.2",
"hast-util-raw": "^9.0.3",
"hast-util-to-string": "^3.0.0",
"lint-staged": "^15.2.5",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-hast": "^13.1.0",
"mdast-util-toc": "^7.0.1",
"micromatch": "^4.0.7",
"prettier": "^3.2.5",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.1",
"vfile-reporter": "^8.1.1",
"yaml": "^2.4.2"
},
"packageManager": "pnpm@9.1.3",
"engines": {
"node": "^18.17.0 || >=20.3.0"
}
}