@oculum/cli 1.0.14 → 1.0.16

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.
Files changed (2) hide show
  1. package/dist/index.js +32198 -8418
  2. package/package.json +10 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oculum/cli",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "AI-native security scanner CLI for detecting vulnerabilities in AI-generated code, BYOK patterns, and modern web applications",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -19,20 +19,23 @@
19
19
  "url": "https://github.com/flexipie/oculum/issues"
20
20
  },
21
21
  "scripts": {
22
- "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\" --define:process.env.OCULUM_API_URL='undefined' --define:VERSION='\"1.0.9\"'",
22
+ "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\" --define:process.env.OCULUM_API_URL='undefined' --define:VERSION='\"'$npm_package_version'\"'",
23
23
  "dev": "npm run build -- --watch",
24
24
  "test": "echo \"No tests configured yet\"",
25
25
  "lint": "eslint src/"
26
26
  },
27
27
  "dependencies": {
28
- "@oculum/scanner": "^1.0.3",
29
- "@oculum/shared": "^1.0.2",
30
- "commander": "^12.1.0",
28
+ "@clack/prompts": "^0.11.0",
29
+ "@inquirer/prompts": "^7.10.1",
30
+ "@oculum/scanner": "^1.0.6",
31
+ "@oculum/shared": "^1.0.5",
31
32
  "chalk": "^5.3.0",
32
- "ora": "^8.1.1",
33
33
  "chokidar": "^4.0.1",
34
+ "commander": "^12.1.0",
34
35
  "glob": "^11.0.0",
35
- "@clack/prompts": "^0.11.0"
36
+ "inquirer": "^12.11.1",
37
+ "minimatch": "^10.1.1",
38
+ "ora": "^8.1.1"
36
39
  },
37
40
  "devDependencies": {
38
41
  "@types/node": "^20",