-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (30 loc) · 780 Bytes
/
package.json
File metadata and controls
31 lines (30 loc) · 780 Bytes
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
{
"name": "ai-key-scanner",
"version": "1.0.0",
"description": "GitHub Action to scan PR diffs for AI API keys",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"bundle": "ncc build dist-tmp/index.js -o dist --source-map --license licenses.txt",
"package": "npm run build && npm run bundle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"github-action",
"security",
"api-key-scanner"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.11.0",
"@vercel/ncc": "^0.38.1",
"typescript": "^5.3.3"
}
}