-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@tryghost/deploy",
"version": "0.6.1",
"license": "MIT",
"author": "Ghost Foundation",
"repository": "https://github.com/TryGhost/Deploy",
"bin": {
"shipit": "./dist/bin/shipit.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"typecheck": "tsc --noEmit",
"lint": "oxlint --quiet && oxfmt --check .",
"lint:fix": "oxlint --fix && oxfmt .",
"format": "oxfmt .",
"test:unit": "vitest run --coverage",
"test": "pnpm lint && pnpm typecheck && pnpm test:unit",
"test:e2e": "docker compose -f test/e2e/docker-compose.yml up --build --abort-on-container-exit --exit-code-from runner",
"preversion": "pnpm test",
"prepublishOnly": "pnpm build",
"preship": "pnpm test",
"ship": "STATUS=$(git status --porcelain); echo $STATUS; if [ -z \"$STATUS\" ]; then pnpm publish && git push --follow-tags; fi"
},
"dependencies": {
"shipit-cli": "5.3.0"
},
"devDependencies": {
"@types/node": "24.13.2",
"@vitest/coverage-v8": "4.1.9",
"oxfmt": "0.55.0",
"oxlint": "1.70.0",
"typescript": "6.0.3",
"vitest": "4.1.9"
},
"engines": {
"node": ">=20.20.0"
},
"packageManager": "pnpm@10.34.4"
}