forked from lucacome/draft-release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2 KB
/
package.json
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
{
"name": "lucacome-draft-release",
"description": "GitHub Action to create a draft release",
"main": "src/main.ts",
"scripts": {
"build": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"lint": "yarn run prettier && yarn run eslint",
"format": "yarn run prettier:fix && yarn run eslint:fix",
"eslint": "npx eslint --max-warnings=0 .",
"eslint:fix": "npx eslint --fix .",
"prettier": "npx prettier --check \"./**/*.ts\"",
"prettier:fix": "npx prettier --write \"./**/*.ts\"",
"test": "npx jest",
"all": "yarn format && yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lucacome/draft-release.git"
},
"keywords": [
"actions",
"release",
"notes",
"draft"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"type": "module",
"author": "Luca Comellini",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@docker/actions-toolkit": "^0.53.0",
"@types/semver": "^7.5.8",
"handlebars": "^4.7.8",
"semver": "^7.7.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.20.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.10",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "3.4.2",
"rollup": "^4.34.6",
"ts-jest": "^29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]"
}