-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 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
35
36
37
38
{
"name": "git-armor",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./dist/*",
"build": "npm run clean && tsc && ncc build ./src/main.ts -o dist --license licenses.txt",
"prettier:write": "prettier --write '**/*.ts'",
"prettier:check": "prettier --check '**/*.ts'",
"start": "npm run build && node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/rest": "^20.1.0",
"chalk": "^5.2.0",
"cli-table": "^0.3.11",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"js-yaml": "^4.1.0",
"luxon": "^3.4.4",
"typescript": "^5.3.2",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/luxon": "^3.3.5",
"@types/node": "^20.10.0",
"@vercel/ncc": "^0.38.1",
"ncp": "^2.0.0",
"prettier": "^3.2.5"
}
}