-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "md",
"type": "module",
"version": "2.0.4",
"private": false,
"description": "WeChat Markdown Editor | 一款高度简洁的微信 Markdown 编辑器:支持 Markdown 语法、自定义主题样式、内容管理、多图床、AI 助手等特性",
"homepage": "https://github.com/doocs/md",
"repository": {
"type": "git",
"url": "https://github.com/doocs/md"
},
"bugs": {
"url": "https://github.com/doocs/md/issues"
},
"scripts": {
"start": "pnpm web dev",
"web": "pnpm --filter @md/web",
"vscode": "pnpm --prefix ./apps/vscode",
"build:cli": "pnpm web build && npx shx rm -rf packages/md-cli/dist && npx shx rm -rf dist/**/*.map && npx shx cp -r apps/web/dist packages/md-cli/ && cd packages/md-cli && npm pack",
"release:cli": "node ./scripts/release.js",
"lint": "eslint . --fix",
"type-check": "vue-tsc --build --force",
"postinstall": "simple-git-hooks",
"inspector": "pnpx node-modules-inspector"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@types/node": "^24.5.2",
"cross-env": "^10.0.0",
"eslint": "^9.36.0",
"eslint-plugin-format": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "3.6.2",
"shx": "^0.4.0",
"simple-git-hooks": "^2.12.1",
"typescript": "~5.9.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}