@oneversec/eversec-rage 0.2.0

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 (3) hide show
  1. package/README.md +82 -0
  2. package/dist/cli.js +357 -0
  3. package/package.json +57 -0
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@oneversec/eversec-rage",
3
+ "version": "0.2.0",
4
+ "description": "RAGE CLI — cliente FINO da plataforma ONEVERSEC (TUI estilo Claude Code; a caça roda no cluster, não local)",
5
+ "type": "module",
6
+ "bin": {
7
+ "eversec-rage": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "engines": {
14
+ "node": ">=18"
15
+ },
16
+ "scripts": {
17
+ "build": "bun build ./src/cli.tsx --target node --outfile dist/cli.js --minify && printf '#!/usr/bin/env node\\n%s' \"$(cat dist/cli.js)\" > dist/cli.js.tmp && mv dist/cli.js.tmp dist/cli.js && chmod +x dist/cli.js",
18
+ "compile": "bun build ./src/cli.tsx --compile --outfile dist/eversec-rage",
19
+ "dev": "bun run ./src/cli.tsx",
20
+ "typecheck": "tsc --noEmit",
21
+ "prepublishOnly": "node dist/cli.js --help > /dev/null"
22
+ },
23
+ "dependencies": {},
24
+ "devDependencies": {
25
+ "@types/node": "^22.20.3",
26
+ "@types/react": "^19",
27
+ "ink": "^7",
28
+ "ink-spinner": "^5.0.0",
29
+ "react": "^19",
30
+ "react-devtools-core": "^8.0.0",
31
+ "typescript": "^5.6.3"
32
+ },
33
+ "keywords": [
34
+ "oneversec",
35
+ "rage",
36
+ "bug-bounty",
37
+ "pentest",
38
+ "security",
39
+ "cli",
40
+ "tui"
41
+ ],
42
+ "author": "ONEVERSEC",
43
+ "homepage": "https://oneversec.com",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/oneversec/oneversec.git",
47
+ "directory": "packages/eversec-cli"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/oneversec/oneversec/issues"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "license": "UNLICENSED",
56
+ "private": false
57
+ }