-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@tryghost/ghst",
"version": "0.14.1",
"description": "A modern Ghost CMS CLI",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TryGhost/ghst.git"
},
"homepage": "https://github.com/TryGhost/ghst#readme",
"bugs": {
"url": "https://github.com/TryGhost/ghst/issues"
},
"bin": {
"ghst": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@11.1.2",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup && chmod +x dist/index.js",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --coverage",
"test:watch": "vitest",
"fixtures:ghost:capture": "tsx scripts/capture-ghost-fixtures.ts",
"fixtures:ghost:check": "tsx scripts/check-ghost-fixtures.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format:check": "biome format .",
"format": "biome format --write .",
"prepack": "pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@tryghost/mg-json": "0.20.0",
"@tryghost/mg-medium-export": "0.25.0",
"@tryghost/mg-substack": "1.4.0",
"@tryghost/mg-wp-xml": "0.15.0",
"@tryghost/string": "0.3.4",
"chalk": "5.6.2",
"cli-table3": "0.6.5",
"commander": "14.0.3",
"conf": "15.1.0",
"csv-parse": "6.2.1",
"gscan": "6.1.0",
"ink": "7.0.3",
"jose": "6.2.3",
"markdown-it": "14.1.1",
"ora": "9.4.0",
"react": "19.2.6",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/markdown-it": "14.1.2",
"@types/node": "25.8.0",
"@types/react": "19.2.14",
"@vitest/coverage-v8": "4.1.6",
"tsup": "8.5.1",
"tsx": "4.22.1",
"typescript": "6.0.3",
"vitest": "4.1.6"
}
}