-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"name": "autorelease",
"version": "0.0.0",
"main": "lib/main.js",
"license": "Apache 2.0",
"private": true,
"scripts": {
"package": "yarn build && yarn ncc build --source-map",
"build": "yarn && yarn lint && yarn tsc",
"format": "yarn eslint 'src/' --fix && prettier --write 'src/**/*.{js,jsx,css,json,md,scss,ts,tsx}'",
"lint": "yarn eslint 'src/' && prettier --check 'src/**/*.{js,jsx,css,json,md,scss,ts,tsx}'",
"test": "yarn jest --passWithNoTests"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.3.1"
}
}