anymous 1.3.10 → 1.3.11

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/index.js +10 -0
  2. package/package.json +41 -39
package/index.js ADDED
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ // anymous is distributed as native platform binaries selected at install time
3
+ // via optionalDependencies + postinstall. This entry point exists so package
4
+ // analyzers can resolve the module; consumers should use the "anymous" bin.
5
+ module.exports = {
6
+ name: "anymous",
7
+ version: "1.3.10",
8
+ description: "AI-powered reverse engineering platform",
9
+ bin: "bin/anymous.js",
10
+ };
package/package.json CHANGED
@@ -1,40 +1,42 @@
1
1
  {
2
- "name": "anymous",
3
- "bin": {
4
- "anymous": "./bin/anymous.js"
5
- },
6
- "scripts": {
7
- "postinstall": "node ./postinstall.mjs"
8
- },
9
- "version": "1.3.10",
10
- "description": "AI-powered reverse engineering platform",
11
- "license": "MIT",
12
- "homepage": "https://github.com/anymousdark/anymous",
13
- "repository": {
14
- "type": "git",
15
- "url": "https://github.com/anymousdark/anymous"
16
- },
17
- "os": [
18
- "darwin",
19
- "linux",
20
- "win32"
21
- ],
22
- "cpu": [
23
- "arm64",
24
- "x64"
25
- ],
26
- "optionalDependencies": {
27
- "anymous-linux-arm64-musl": "1.3.10",
28
- "anymous-linux-x64": "1.3.10",
29
- "anymous-darwin-x64-baseline": "1.3.10",
30
- "anymous-windows-arm64": "1.3.10",
31
- "anymous-linux-arm64": "1.3.10",
32
- "anymous-darwin-arm64": "1.3.10",
33
- "anymous-windows-x64-baseline": "1.3.10",
34
- "anymous-linux-x64-baseline-musl": "1.3.10",
35
- "anymous-linux-x64-baseline": "1.3.10",
36
- "anymous-windows-x64": "1.3.10",
37
- "anymous-darwin-x64": "1.3.10",
38
- "anymous-linux-x64-musl": "1.3.10"
39
- }
40
- }
2
+ "name": "anymous",
3
+ "main": "index.js",
4
+ "type": "commonjs",
5
+ "bin": {
6
+ "anymous": "./bin/anymous.js"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node ./postinstall.mjs"
10
+ },
11
+ "version": "1.3.11",
12
+ "description": "AI-powered reverse engineering platform",
13
+ "license": "MIT",
14
+ "homepage": "https://github.com/anymousdark/anymous",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/anymousdark/anymous"
18
+ },
19
+ "os": [
20
+ "darwin",
21
+ "linux",
22
+ "win32"
23
+ ],
24
+ "cpu": [
25
+ "arm64",
26
+ "x64"
27
+ ],
28
+ "optionalDependencies": {
29
+ "anymous-linux-arm64-musl": "1.3.10",
30
+ "anymous-linux-x64": "1.3.10",
31
+ "anymous-darwin-x64-baseline": "1.3.10",
32
+ "anymous-windows-arm64": "1.3.10",
33
+ "anymous-linux-arm64": "1.3.10",
34
+ "anymous-darwin-arm64": "1.3.10",
35
+ "anymous-windows-x64-baseline": "1.3.10",
36
+ "anymous-linux-x64-baseline-musl": "1.3.10",
37
+ "anymous-linux-x64-baseline": "1.3.10",
38
+ "anymous-windows-x64": "1.3.10",
39
+ "anymous-darwin-x64": "1.3.10",
40
+ "anymous-linux-x64-musl": "1.3.10"
41
+ }
42
+ }