redblue-cli 0.1.0-next.48

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 ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "redblue-cli",
3
+ "version": "0.1.0-next.48+50cf0f6",
4
+ "description": "JavaScript SDK wrapper for the redblue CLI",
5
+ "type": "commonjs",
6
+ "main": "./sdk/redblue-sdk.js",
7
+ "bin": {
8
+ "rb": "./sdk/redblue-sdk.js",
9
+ "redblue-cli": "./sdk/redblue-sdk.js"
10
+ },
11
+ "exports": {
12
+ ".": "./sdk/redblue-sdk.js"
13
+ },
14
+ "files": [
15
+ "sdk/redblue-sdk.js"
16
+ ],
17
+ "engines": {
18
+ "node": ">=20"
19
+ },
20
+ "packageManager": "pnpm@9.15.0",
21
+ "publishConfig": {
22
+ "access": "public",
23
+ "provenance": true
24
+ },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "git+https://github.com/forattini-dev/redblue.git"
28
+ },
29
+ "bugs": {
30
+ "url": "https://github.com/forattini-dev/redblue/issues"
31
+ },
32
+ "homepage": "https://github.com/forattini-dev/redblue",
33
+ "keywords": [
34
+ "redblue",
35
+ "security",
36
+ "cli",
37
+ "sdk",
38
+ "dns",
39
+ "tls",
40
+ "ports"
41
+ ],
42
+ "license": "MIT",
43
+ "dependencies": {
44
+ "cli-args-parser": "^1.0.6"
45
+ },
46
+ "scripts": {
47
+ "build": "node --check sdk/redblue-sdk.js",
48
+ "test": "node --test --test-reporter=spec sdk/test/*.test.js",
49
+ "coverage": "node scripts/check-sdk-coverage.js",
50
+ "pack-check": "npm pack --dry-run",
51
+ "prepublishOnly": "npm run build && npm run coverage && npm run pack-check",
52
+ "publish:npm": "npm publish --provenance",
53
+ "publish:npm:next": "npm publish --tag next --provenance"
54
+ }
55
+ }