-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "next-release-tag",
"version": "1.0.0",
"description": "Github Action to generate next Release Tag",
"author": "amitsingh-007",
"license": "MIT-open-group",
"homepage": "https://github.com/amitsingh-007/next-release-tag#readme",
"scripts": {
"build": "pnpm clean && ncc build src/index.ts --minify --license licenses.txt",
"clean": "rimraf dist/",
"dist": "pnpm lint && pnpm test && pnpm build",
"lint": "eslint .",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"rimraf": "6.0.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.38.2",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.6",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vitest": "2.1.3"
}
}