@seqra/opentaint 0.0.0 → 0.4.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 (2) hide show
  1. package/bin/opentaint.js +0 -7
  2. package/package.json +7 -7
package/bin/opentaint.js CHANGED
@@ -7,13 +7,6 @@ const { spawnSync } = require('node:child_process');
7
7
 
8
8
  const SCOPE = '@seqra';
9
9
 
10
- // Node's process.platform / process.arch tokens (linux|darwin|win32, x64|arm64)
11
- // are exactly the suffixes used for the per-platform packages, so the package
12
- // name is derived directly rather than looked up. This set is purely an
13
- // allowlist of the platforms we publish binaries for — it exists so an
14
- // unsupported host gets a clear error instead of a failed resolve of a
15
- // package that was never published. Keep it in sync with the platform matrix
16
- // in cli/scripts/build-npm-packages.sh.
17
10
  const SUPPORTED_PLATFORMS = new Set([
18
11
  'linux x64',
19
12
  'linux arm64',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seqra/opentaint",
3
- "version": "0.0.0",
3
+ "version": "0.4.0",
4
4
  "description": "The open source taint analysis engine for the AI era.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -15,12 +15,12 @@
15
15
  "bin/"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "@seqra/opentaint-linux-x64": "0.0.0",
19
- "@seqra/opentaint-linux-arm64": "0.0.0",
20
- "@seqra/opentaint-darwin-x64": "0.0.0",
21
- "@seqra/opentaint-darwin-arm64": "0.0.0",
22
- "@seqra/opentaint-win32-x64": "0.0.0",
23
- "@seqra/opentaint-win32-arm64": "0.0.0"
18
+ "@seqra/opentaint-linux-x64": "0.4.0",
19
+ "@seqra/opentaint-linux-arm64": "0.4.0",
20
+ "@seqra/opentaint-darwin-x64": "0.4.0",
21
+ "@seqra/opentaint-darwin-arm64": "0.4.0",
22
+ "@seqra/opentaint-win32-x64": "0.4.0",
23
+ "@seqra/opentaint-win32-arm64": "0.4.0"
24
24
  },
25
25
  "publishConfig": {
26
26
  "access": "public"