infynon 0.2.7 → 0.2.8
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/README.md +1 -1
- package/package.json +53 -53
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Unsupported platforms can still install the npm wrapper, but the wrapper will no
|
|
|
42
42
|
|
|
43
43
|
## Provenance and Platform Packages
|
|
44
44
|
|
|
45
|
-
INFYNON npm packages are configured for npm provenance from
|
|
45
|
+
INFYNON npm packages are configured for npm provenance when published from a public GitHub Actions source repository. Private-source release runs publish without provenance because npm rejects private-repo provenance bundles; use the GitHub Release manifest and SHA-256 checksums as the release-integrity signal for those builds.
|
|
46
46
|
|
|
47
47
|
The package can use optional native binary packages:
|
|
48
48
|
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "infynon",
|
|
3
|
+
"version": "0.2.8",
|
|
4
|
+
"description": "Security-first CLI for AI-assisted development: safe package installs, dependency scanning, API flow testing, and agent task orchestration.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"infynon": "run.js",
|
|
7
|
+
"infynon-pkg": "run-pkg.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE",
|
|
12
|
+
"run.js",
|
|
13
|
+
"run-pkg.js",
|
|
14
|
+
"postinstall.js",
|
|
15
|
+
"preuninstall.js"
|
|
16
|
+
],
|
|
17
|
+
"optionalDependencies": {
|
|
18
|
+
"@infynon/cli-win32-x64": "0.2.8",
|
|
19
|
+
"@infynon/cli-linux-x64": "0.2.8",
|
|
20
|
+
"@infynon/cli-linux-arm64": "0.2.8",
|
|
21
|
+
"@infynon/cli-darwin-x64": "0.2.8",
|
|
22
|
+
"@infynon/cli-darwin-arm64": "0.2.8"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": "\u003e=18"
|
|
26
|
+
},
|
|
27
|
+
"packageManager": "npm@11.8.0",
|
|
28
|
+
"author": "d4rkNinja",
|
|
29
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/d4rkNinja/infynon-cli.git",
|
|
33
|
+
"directory": "npm"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/d4rkNinja/infynon-cli/issues"
|
|
37
|
+
},
|
|
38
|
+
"homepage": "https://cli.infynon.com",
|
|
39
|
+
"publishConfig": {
|
|
40
|
+
"access": "public",
|
|
41
|
+
"provenance": true
|
|
42
|
+
},
|
|
43
|
+
"keywords": [
|
|
44
|
+
"cli",
|
|
45
|
+
"security",
|
|
46
|
+
"supply-chain",
|
|
47
|
+
"dependency-scanning",
|
|
48
|
+
"ai-agents",
|
|
49
|
+
"claude-code",
|
|
50
|
+
"codex",
|
|
51
|
+
"gemini-cli",
|
|
52
|
+
"api-testing",
|
|
53
|
+
"devtools"
|
|
54
|
+
]
|
|
55
55
|
}
|