-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.35 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.35 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
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
94
95
96
{
"name": "@md/web",
"type": "module",
"private": true,
"engines": {
"node": ">=22.16.0"
},
"scripts": {
"start": "pnpm run dev",
"dev": "vite",
"build": "run-p type-check \"build:only {@}\" --",
"build:only": "vite build",
"build:h5-netlify": "run-p type-check \"build:h5-netlify:only {@}\" --",
"build:h5-netlify:only": "cross-env SERVER_ENV=NETLIFY vite build",
"build:utools": "cross-env SERVER_ENV=UTOOLS vite build --outDir ../utools/dist --emptyOutDir",
"build:cli": "pnpm run build && npx shx rm -rf packages/md-cli/dist && npx shx rm -rf dist/**/*.map && npx shx cp -r dist packages/md-cli/ && cd packages/md-cli && npm pack",
"build:analyze": "cross-env ANALYZE=true vite build",
"compile:extension": "pnpm --prefix ./src/extension run compile",
"preview": "pnpm run build && vite preview",
"wrangler:dev": "cross-env CF_WORKERS=1 vite --host",
"wrangler:deploy": "cross-env CF_WORKERS=1 pnpm run build:h5-netlify && wrangler deploy",
"release:cli": "node ./scripts/release.js",
"ext:dev": "wxt",
"ext:zip": "cross-env NODE_OPTIONS=--max-old-space-size=4096 wxt zip",
"firefox:dev": "wxt -b firefox",
"firefox:zip": "cross-env NODE_OPTIONS=--max-old-space-size=4096 wxt zip -b firefox",
"type-check": "vue-tsc --build --force",
"postinstall": "wxt prepare",
"package:extension": "pnpm --prefix ./src/extension run package"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1032.0",
"@aws-sdk/s3-request-presigner": "^3.1032.0",
"@exercism/highlightjs-gdscript": "^0.0.1",
"@md/core": "workspace:*",
"@md/shared": "workspace:*",
"@ssttevee/multipart-parser": "^0.1.9",
"@vee-validate/yup": "^4.15.1",
"@vueuse/core": "^14.2.1",
"browser-image-compression": "^2.0.2",
"buffer-from": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"crypto-js": "^4.2.0",
"diff-match-patch": "^1.0.5",
"es-toolkit": "^1.45.1",
"html-to-image": "^1.11.13",
"jszip": "^3.10.1",
"katex": "^0.16.22",
"juice": "^11.1.1",
"lucide-vue-next": "^1.0.0",
"marked": "^18.0.1",
"pinia": "^3.0.4",
"qiniu-js": "^3.4.4",
"radix-vue": "^1.9.17",
"reka-ui": "^2.9.6",
"spark-md5": "3.0.2",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0",
"vee-validate": "^4.15.1",
"vue": "^3.5.32",
"vue-pick-colors": "^1.8.0",
"vue-sonner": "^2.0.9",
"yup": "^1.7.1"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.32.3",
"@cloudflare/workers-types": "^4.20260418.1",
"@md/config": "workspace:*",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/buffer-from": "^1.1.3",
"@types/crypto-js": "^4.2.2",
"@types/diff-match-patch": "^1.0.36",
"@types/spark-md5": "3.0.5",
"@vitejs/plugin-vue": "^6.0.6",
"less": "^4.6.4",
"linkedom": "^0.18.12",
"ohash": "^2.0.11",
"postcss": "^8.5.10",
"rollup": "^4.60.1",
"rollup-plugin-visualizer": "^7.0.1",
"shx": "^0.4.0",
"tailwindcss": "^4.2.2",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.0.0",
"vite": "^8.0.8",
"vite-plugin-radar": "^0.10.1",
"vite-plugin-vue-devtools": "^8.1.1",
"vue-tsc": "^3.2.6",
"wrangler": "^4.83.0",
"wxt": "^0.20.24"
}
}