-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "md2wechat",
"version": "1.0.0",
"description": "**Markdown → 微信公众号草稿箱** — 开源的一键发布 HTTP 微服务",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"start": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sawyerbutton/md2wechat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/sawyerbutton/md2wechat/issues"
},
"homepage": "https://github.com/sawyerbutton/md2wechat#readme",
"dependencies": {
"@css-inline/css-inline": "^0.20.0",
"@fastify/cors": "^11.2.0",
"@fastify/multipart": "^9.4.0",
"axios": "^1.13.6",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.2.0",
"fastify": "^5.8.2",
"form-data": "^4.0.5",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"kysely": "^0.28.11",
"markdown-it": "^14.1.1",
"markdown-it-mathjax3": "^5.2.0",
"pg": "^8.20.0",
"sharp": "^0.34.5",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.3.5",
"@types/pg": "^8.18.0",
"@types/uuid": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}