forked from GreptimeTeam/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.39 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
86
87
88
89
90
91
92
93
{
"name": "greptime_docs",
"description": "Docs of Greptime",
"version": "1.0.0",
"private": true,
"main": "index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"dependencies": {
"@docsearch/css": "^3.3.2",
"@vueuse/core": "^9.13.0",
"algoliasearch": "^4.14.3",
"body-scroll-lock": "^4.0.0-beta.0",
"cross-spawn": "^7.0.3",
"csstype": "^3.1.1",
"dayjs": "^1.11.7",
"deepmerge": "^4.3.1",
"dotenv": "^16.1.4",
"esbuild": "^0.18.11",
"estree-walker": "^3.0.3",
"fs-extra": "^11.1.0",
"git-date-extractor": "^4.0.1",
"globby": "13.1.3",
"gray-matter": "^4.0.3",
"has": "^1.0.3",
"is-core-module": "^2.13.1",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.1.0",
"magic-string": "^0.30.10",
"markdown-it": "^13.0.1",
"md5": "^2.3.0",
"nanoid": "^4.0.1",
"path": "^0.12.7",
"path-parse": "^1.0.7",
"picocolors": "^1.0.0",
"postcss": "^8.4.38",
"preact": "^10.15.1",
"pug": "^3.0.3",
"resolve": "^1.22.1",
"rollup": "^3.26.0",
"semver": "^7.6.0",
"shiki": "^0.14.1",
"simple-git": "^3.16.0",
"source-map": "^0.7.4",
"source-map-js": "^1.0.2",
"sourcemap-codec": "^1.4.8",
"stylus": "^0.59.0",
"supports-preserve-symlinks-flag": "^1.0.0",
"update": "^0.7.4",
"vite": "^4.0.4",
"vscode-oniguruma": "^1.7.0",
"vscode-textmate": "^9.0.0",
"vue-demi": "^0.13.6"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"markdownlint-cli": "^0.37.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-multi-input": "^1.4.1",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.24.0",
"vitepress": "1.0.0-rc.20",
"vue": "^3.3.4"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"serve": "vitepress serve docs",
"lint-staged": "npx lint-staged",
"prepare": "husky install",
"dev": "node ./script/dev.js",
"build": "node ./script/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GrepTimeTeam/docs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/GrepTimeTeam/docs/issues"
},
"homepage": "https://github.com/GrepTimeTeam/docs#readme",
"lint-staged": {
"*.md": [
"npx markdownlint"
]
},
"packageManager": "pnpm@8.6.0"
}