-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.04 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.04 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "md",
"type": "module",
"version": "2.1.0",
"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"
},
"engines": {
"node": ">=22.16.0"
},
"scripts": {
"start": "pnpm web dev",
"web": "pnpm --filter @md/web",
"vscode": "pnpm --prefix ./apps/vscode",
"cli": "pnpm --filter @doocs/md-cli",
"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",
"utools:package": "node ./scripts/package-utools.mjs"
},
"dependencies": {
"@codemirror/state": "^6.5.2",
"@codemirror/view": "6.38.8"
},
"devDependencies": {
"@antfu/eslint-config": "6.2.0",
"@types/node": "^24.10.1",
"archiver": "^7.0.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"shx": "^0.4.0",
"simple-git-hooks": "^2.13.1",
"typescript": "~5.9.3"
},
"pnpm": {
"overrides": {
"@codemirror/view": "6.38.8",
"core-js@<3": "^3.46.0",
"glob@<8": "^10.4.5",
"inflight": "npm:@hishprorg/voluptates-laborum@^2.0.0",
"source-map@0.8.0-beta.0": "0.7.4",
"workbox-build>source-map": "0.7.4"
},
"patchedDependencies": {
"@codemirror/view@6.38.8": "patches/@codemirror__view@6.38.8.patch"
}
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}