-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1008 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1008 Bytes
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
{
"name": "relion",
"version": "0.46.1",
"description": "🏷️ Release Workflow Helper",
"author": "kh4f <kh4f.dev@gmail.com>",
"license": "MIT",
"repository": "https://github.com/kh4f/relion",
"bugs": "https://github.com/kh4f/relion/issues",
"homepage": "https://github.com/kh4f/relion#readme",
"keywords": ["relion", "release", "release-automation", "release-workflow", "release-helper", "release-workflow-helper"],
"files": ["dist"],
"type": "module",
"bin": "dist/cli.js",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"build:prod": "tsdown --prod",
"lint": "eslint",
"typecheck": "tsc",
"test": "bun test",
"release": "bun src/cli"
},
"dependencies": {
"semver": "^7.7.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/bun": "^1.3.12",
"@types/semver": "^7.7.1",
"eslint": "^10.2.1",
"jiti": "^2.6.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2"
}
}