-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "ghapp-token-action",
"description": "Login and perform actions as a Github Application",
"license": "MIT",
"version": "0.0.0",
"private": true,
"author": {
"name": "W Anders",
"email": "[email protected]",
"url": "https://github.com/wranders/ghapp-token-action"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wranders/ghapp-token-action.git"
},
"homepage": "https://github.com/wranders/ghapp-token-action#readme",
"bugs": {
"url": "https://github.com/wranders/ghapp-token-action/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint index.ts",
"format": "prettier --write index.ts",
"clean:dist": "node -e \"require('fs').rm('dist',{recursive:true,force:true},()=>{});\"",
"clean:lib": "node -e \"require('fs').rm('lib',{recursive:true,force:true},()=>{});\"",
"clean": "npm run clean:dist && npm run clean:lib",
"prebuild": "npm run clean",
"build": "tsc",
"prepackage": "npm run build",
"package": "ncc build --minify --source-map --license licenses.txt"
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}