-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.33 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.33 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@oneblink/release-cli",
"description": "Used internally by OneBlink to release repositories quickly and consistently",
"version": "4.0.0",
"author": "OneBlink <developers@oneblink> (https://github.com/oneblink)",
"bin": {
"oneblink-release": "dist/bin.js"
},
"bugs": {
"url": "https://github.com/oneblink/release-cli/issues"
},
"bundleDependencies": [
"changelog-parser"
],
"dependencies": {
"@octokit/rest": "^22.0.1",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"changelog-parser": "^3.0.1",
"dependency-diff": "^1.0.4",
"enquirer": "^2.4.1",
"execa": "^9.6.1",
"github-url-from-git": "^1.5.0",
"meow": "^14.0.0",
"ora": "^9.0.0",
"patch-package": "^8.0.1",
"prettier": "^3.8.0",
"read-package-up": "^12.0.0",
"semver": "^7.7.3",
"update-notifier": "^7.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@microsoft/eslint-plugin-sdl": "^1.1.0",
"@types/changelog-parser": "^2.8.4",
"@types/github-url-from-git": "^1.5.3",
"@types/node": "^24.10.8",
"@types/semver": "^7.7.1",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"fixpack": "^4.0.0",
"prettier-plugin-jsdoc": "^1.8.0",
"typescript": "^5.9.3"
},
"directories": {
"test": "test"
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"files": [
"dist",
"patches"
],
"homepage": "https://github.com/oneblink/release-cli#readme",
"keywords": [
"release"
],
"license": "GPL-3.0-only",
"main": "./dist/startReleaseProcess.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oneblink/release-cli.git"
},
"scripts": {
"build": "tsc --build",
"eslint": "eslint --fix --cache .",
"postinstall": "patch-package",
"prepare": "npm run build",
"prerelease": "npm run build",
"pretest": "npm run eslint && npm run typescript && fixpack",
"release": "node dist/bin.js repository --no-name --cwd .",
"test": "echo \"no tests\"",
"typescript": "tsc --noEmit"
},
"type": "module"
}