-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.3 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
{
"name": "@joohw/gzh-cli",
"version": "0.1.2",
"description": "WeChat Official Account CLI:通过微信官方 API 创建公众号草稿并管理发布工作流",
"type": "module",
"main": "dist/cli/index.js",
"types": "dist/cli/index.d.ts",
"bin": {
"gzh": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "npm run build && find dist -name '*.test.js' -print0 | xargs -0 node --test",
"dev": "npm run build && node dist/cli/index.js help",
"landing:serve": "node landing/server.mjs"
},
"keywords": [
"wechat",
"weixin",
"wechat-mp",
"wechat-official-account",
"official-account",
"微信公众号",
"公众号",
"公众号发布",
"draft",
"freepublish",
"cli",
"automation",
"publishing"
],
"author": "Joo <1546635571@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joohw/gzh-cli.git"
},
"bugs": {
"url": "https://github.com/joohw/gzh-cli/issues"
},
"homepage": "https://github.com/joohw/gzh-cli#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"puppeteer-core": "^24.29.1"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "^5.9.3"
}
}