-
Notifications
You must be signed in to change notification settings - Fork 839
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "wechatsync",
"version": "2.0.0",
"private": true,
"description": "微信公众号同步助手 - 多平台内容分发工具",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspace @wechatsync/extension dev",
"build": "yarn workspaces run build",
"build:core": "yarn workspace @wechatsync/core build",
"build:extension": "yarn workspace @wechatsync/extension build",
"build:mcp": "yarn workspace @wechatsync/mcp-server build",
"build:cli": "yarn workspace @wechatsync/cli build",
"mcp": "yarn workspace @wechatsync/mcp-server start",
"test": "yarn workspaces run test",
"lint": "eslint packages --ext .ts,.tsx",
"typecheck": "yarn workspaces run typecheck",
"clean": "yarn workspaces run clean && rm -rf node_modules"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"prettier": "^3.1.0",
"rehype-parse": "^9.0.1",
"rehype-remark": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-stringify": "^11.0.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"typescript": "^5.3.0",
"unified": "^11.0.5"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modyfi/vite-plugin-yaml": "^1.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}