-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "konvu-github-action",
"version": "0.0.1",
"description": "Konvu Static Analyzer github action",
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky"
},
"exports": {
".": "./dist/index.js"
},
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KonvuTeam/konvu-github-action.git"
},
"author": "Konvu Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/KonvuTeam/konvu-github-action/issues"
},
"homepage": "https://github.com/KonvuTeam/konvu-github-action#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"axios": "^1.7.4"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@vercel/ncc": "^0.38.1",
"husky": "^9.1.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}