-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "codeql-query",
"version": "1.0.7",
"private": true,
"description": "CodeQL query action",
"scripts": {
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint --report-unused-disable-directives --max-warnings=0 .",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --fix",
"find-deadcode": "ts-node script/find-deadcode.ts"
},
"license": "MIT",
"engines": {
"node": "^24.0.0"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.0.0",
"@actions/http-client": "^4.0.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@octokit/action": "^8.0.4",
"@octokit/plugin-retry": "^8.1.0",
"@octokit/plugin-throttling": "^11.0.3",
"ajv": "8.18.0",
"form-data": "^4.0.5",
"jszip": "3.10.1",
"semver": "^7.7.4",
"uuid": "^13.0.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@octokit/types": "^16.0.0",
"@types/archiver": "^7.0.0",
"@types/node": "^25.2.3",
"@types/semver": "^7.7.1",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.32.1",
"archiver": "^7.0.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-github": "^6.0.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"ts-json-schema-generator": "2.9.0",
"ts-node": "^10.9.2",
"ts-unused-exports": "^11.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"resolutions": {
"glob-parent": ">=5.1.2",
"normalize-url": ">=4.5.1"
}
}