forked from caol64/wenyan-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "@wenyan-md/cli",
"version": "1.0.7",
"description": "A CLI tool for Wenyan markdown rendering & publishing",
"author": "Lei <caol64@gmail.com> (https://github.com/caol64)",
"license": "Apache-2.0",
"keywords": [
"公众号",
"markdown",
"文颜",
"wenyan",
"wechat",
"publishing",
"renderer"
],
"type": "module",
"bin": {
"wenyan": "./bin/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/caol64/wenyan-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/caol64/wenyan-cli.git"
},
"bugs": {
"url": "https://github.com/caol64/wenyan-cli/issues"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"upgrade:core": "pnpm update @wenyan-md/core",
"prepublishOnly": "pnpm build && pnpm upgrade:core",
"test:render": "pnpm build && cat test/publish.md | node ./bin/cli.js render",
"test:publish": "pnpm build && cat test/publish.md | pnpm dotenv -e .env.test -- node ./bin/cli.js publish -t lapis"
},
"packageManager": "pnpm@10.7.1",
"dependencies": {
"@wenyan-md/core": "^1.0.14",
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"dotenv-cli": "^10.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
}
}