md2any 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "md2any",
3
+ "version": "1.0.0",
4
+ "description": "一篇 Markdown,发到微信公众号 / 知乎 / 小红书 / Twitter(X)。自动截长图、AI 生成平台文案与串推、真实浏览器自动填内容传图。可作为 Agent Skill 使用。",
5
+ "bin": {
6
+ "md2any": "./bin/md2any.js"
7
+ },
8
+ "main": "./lib/actions.js",
9
+ "license": "MIT",
10
+ "author": "marsggbo",
11
+ "homepage": "https://github.com/marsggbo/markdown2anything/tree/main/cli",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/marsggbo/markdown2anything.git",
15
+ "directory": "cli"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/marsggbo/markdown2anything/issues"
19
+ },
20
+ "keywords": [
21
+ "markdown",
22
+ "publish",
23
+ "wechat",
24
+ "微信公众号",
25
+ "zhihu",
26
+ "知乎",
27
+ "xiaohongshu",
28
+ "小红书",
29
+ "twitter",
30
+ "x",
31
+ "cli",
32
+ "agent",
33
+ "skill",
34
+ "llm",
35
+ "playwright"
36
+ ],
37
+ "engines": {
38
+ "node": ">=18"
39
+ },
40
+ "files": [
41
+ "bin/",
42
+ "lib/",
43
+ "scripts/",
44
+ "SKILL.md",
45
+ "README.md"
46
+ ],
47
+ "scripts": {
48
+ "prepack": "node ./scripts-build/vendor.js",
49
+ "test": "node ./scripts-build/smoke.js"
50
+ },
51
+ "dependencies": {
52
+ "ali-oss": "^6.23.0",
53
+ "cheerio": "^1.0.0-rc.12",
54
+ "gray-matter": "^4.0.3",
55
+ "highlight.js": "^11.9.0",
56
+ "juice": "^9.1.0",
57
+ "katex": "^0.16.0",
58
+ "marked": "^11.1.1",
59
+ "mathjax-full": "^3.2.1",
60
+ "md5": "^2.3.0",
61
+ "playwright-core": "^1.59.1",
62
+ "pngjs": "^7.0.0",
63
+ "qrcode": "^1.5.4"
64
+ }
65
+ }