@conterra/vuln-scan 0.0.29 → 0.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,52 +1,56 @@
1
1
  {
2
- "name": "@conterra/vuln-scan",
3
- "version": "0.0.29",
4
- "description": "con terra vulnerability scan process",
5
- "author": "con terra GmbH",
6
- "license": "Apache-2.0",
7
- "type": "commonjs",
8
- "files": [
9
- "./dist/**",
10
- "LICENSE.txt",
11
- "README.md"
12
- ],
13
- "bin": {
14
- "ct-vuln-scan": "dist/vuln-scan.js",
15
- "ct-vuln-add-vex": "dist/add-statement.js",
16
- "ct-vuln-add-project": "dist/add-project.js",
17
- "ct-vuln-remove-project": "dist/remove-project.js"
18
- },
19
- "engines": {
20
- "node": ">= 20"
21
- },
22
- "scripts": {
23
- "full-build": "npm run clean && npm run type-check && npm run lint && npm run prod",
24
- "build": "npm run test run && node esbuild.config.mjs build",
25
- "prod": "npm run test run && node esbuild.config.mjs prod",
26
- "watch": "node esbuild.config.mjs watch",
27
- "type-check": "tsc --noEmit",
28
- "type-watch": "tsc -w --noEmit",
29
- "update-openvex-types": "json2ts --input ./src/types/openvex-schema.json --output ./src/types/openvex_json.ts --no-style.semi --style.tabWidth 4",
30
- "lint": "eslint",
31
- "clean": "rimraf dist",
32
- "test": "vitest"
33
- },
34
- "dependencies": {
35
- "zx": "8.8.4"
36
- },
37
- "devDependencies": {
38
- "@types/escape-html": "1.0.4",
39
- "copyfiles": "2.4.1",
40
- "esbuild": "0.25.10",
41
- "escape-html": "1.0.3",
42
- "eslint-plugin-headers": "1.3.3",
43
- "globals": "16.4.0",
44
- "json-schema-to-typescript": "15.0.4",
45
- "node-sarif-builder": "3.2.0",
46
- "rimraf": "6.0.1",
47
- "typescript": "5.9.3",
48
- "typescript-eslint": "8.46.1",
49
- "vitest": "3.2.4",
50
- "@inquirer/prompts": "7.9.0"
51
- }
52
- }
2
+ "name": "@conterra/vuln-scan",
3
+ "version": "0.0.30",
4
+ "description": "con terra vulnerability scan process",
5
+ "author": "con terra GmbH",
6
+ "license": "Apache-2.0",
7
+ "type": "commonjs",
8
+ "files": [
9
+ "./dist/**",
10
+ "LICENSE.txt",
11
+ "README.md"
12
+ ],
13
+ "bin": {
14
+ "ct-vuln-scan": "dist/vuln-scan.js",
15
+ "ct-vuln-add-vex": "dist/add-statement.js",
16
+ "ct-vuln-add-project": "dist/add-project.js",
17
+ "ct-vuln-remove-project": "dist/remove-project.js"
18
+ },
19
+ "engines": {
20
+ "node": ">= 20",
21
+ "pnpm": ">= 10.0.0"
22
+ },
23
+ "dependencies": {
24
+ "zx": "8.8.5"
25
+ },
26
+ "devDependencies": {
27
+ "@types/node": "^22",
28
+ "@types/escape-html": "1.0.4",
29
+ "@types/sarif": "^2.1.7",
30
+ "copyfiles": "2.4.1",
31
+ "esbuild": "0.27.0",
32
+ "escape-html": "1.0.3",
33
+ "eslint-plugin-headers": "1.3.3",
34
+ "eslint": "^9.39.1",
35
+ "globals": "16.5.0",
36
+ "json-schema-to-typescript": "15.0.4",
37
+ "node-sarif-builder": "3.2.0",
38
+ "rimraf": "6.1.0",
39
+ "typescript": "5.9.3",
40
+ "typescript-eslint": "8.46.4",
41
+ "vitest": "3.2.4",
42
+ "@inquirer/prompts": "7.10.1"
43
+ },
44
+ "scripts": {
45
+ "full-build": "pnpm run clean && pnpm run type-check && pnpm run lint && pnpm run prod",
46
+ "build": "pnpm run test run && node esbuild.config.mjs build",
47
+ "prod": "pnpm run test run && node esbuild.config.mjs prod",
48
+ "watch": "node esbuild.config.mjs watch",
49
+ "type-check": "tsc --noEmit",
50
+ "type-watch": "tsc -w --noEmit",
51
+ "update-openvex-types": "json2ts --input ./src/types/openvex-schema.json --output ./src/types/openvex_json.ts --no-style.semi --style.tabWidth 4",
52
+ "lint": "eslint",
53
+ "clean": "rimraf dist",
54
+ "test": "vitest"
55
+ }
56
+ }