-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.93 KB
/
package.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "mdcast",
"version": "0.0.12",
"description": "A CLI to cross post Markdown articles across Medium, Dev.to and Hashnode",
"private": false,
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"start": "node dist/index.js",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"release": "changeset version",
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
"pub:release": "pnpm build && pnpm publish --access public",
"prepare": "pnpm build"
},
"author": {
"name": "franciscomoretti",
"url": "https://twitter.com/_franmoretti"
},
"repository": {
"type": "git",
"url": "https://github.com/franciscomoretti/mdcast.git",
"directory": "."
},
"files": [
"dist"
],
"keywords": [
"cli",
"cross-post",
"markdown",
"blog"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"mdcast": "./dist/index.js"
},
"homepage": "https://github.com/FranciscoMoretti/mdcast#readme",
"dependencies": {
"@octokit/rest": "^21.1.0",
"@t3-oss/env-core": "^0.6.0",
"@types/fs-extra": "^11.0.4",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.0",
"@types/prompts": "^2.4.9",
"axios": "^1.3.2",
"chalk": "^5.4.1",
"commander": "^11.0.0",
"config": "^3.3.9",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.0.1",
"fs-extra": "^11.2.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"gray-matter": "^4.0.3",
"inquirer": "^9.1.4",
"nanoid": "3.3.4",
"octokit": "^2.0.11",
"ora": "^8.1.1",
"prompts": "^2.4.2",
"rehype-remark": "^10.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-parse-frontmatter": "^1.0.3",
"remark-rehype": "^11.1.1",
"remark-stringify": "^11.0.0",
"slugify": "^1.6.5",
"to-vfile": "^8.0.0",
"tsup": "^8.3.5",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/config": "^3.3.0",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"prettier": "^2.8.3",
"rimraf": "^4.1.3",
"ts-node": "^10.8.2",
"tsx": "^3.12.7",
"typescript": "^4.9.5"
},
"license": "MIT",
"packageManager": "pnpm@9.0.6"
}