-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "@brenn/ship",
"version": "0.1.12",
"description": "CLI for shipping, submitting, and managing site growth workflows across aidirs.org and backlinkdirs.com.",
"main": "dist/index.js",
"bin": {
"ship": "dist/index.js"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"install.sh",
"install.ps1",
"install.cmd"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobinWM/ship-cli.git"
},
"homepage": "https://github.com/RobinWM/ship-cli#readme",
"bugs": {
"url": "https://github.com/RobinWM/ship-cli/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"build:release": "npm run build && pkg dist/index.js --targets node20-linux-x64,node20-linux-arm64,node20-macos-x64,node20-macos-arm64 --output release-assets/ship",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"test": "npm run build && node --test tests/*.test.js",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"keywords": [
"ship",
"cli",
"submission",
"seo",
"aidirs",
"backlinkdirs"
],
"author": "Brennan",
"license": "ISC",
"dependencies": {
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"inquirer": "^9.2.20"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^20.14.0",
"@yao-pkg/pkg": "^6.14.2",
"typescript": "^5.4.5"
},
"pkg": {
"outputPath": "release-assets"
}
}