-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 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
{
"name": "report-action",
"version": "1.0.0",
"description": "Github actions to trigger report generation for runtime security.",
"main": "dist/main/index.js",
"scripts": {
"build": "npm run build:main && npm run build:post",
"build:main": "npx ncc build src/main/index.ts -o dist/main --source-map --license licenses.txt",
"build:post": "npx ncc build src/post/index.ts -o dist/post --source-map --license licenses.txt",
"start:main": "node dist/main/index.js",
"start:post": "node dist/post/index.js",
"dev:main": "npx ts-node src/main/index.ts",
"dev:post": "npx ts-node src/post/index.ts",
"lint": "npx biome check .",
"format": "npx biome format . --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/artifact": "^1.1.2",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^20.14.12",
"@vercel/ncc": "^0.38.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}