cxpher 2.0.9 → 2.0.12

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/CHANGELOG.md +1 -1
  2. package/README.md +1 -1
  3. package/package.json +13 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cxpher",
3
- "version": "2.0.9",
3
+ "version": "2.0.12",
4
4
  "type": "module",
5
5
  "description": "Agentics Package Manager — Encrypted native binary compiler + package manager for JavaScript",
6
6
  "main": "bin/cXpher.js",
@@ -22,8 +22,10 @@
22
22
  },
23
23
  "scripts": {
24
24
  "postinstall": "node install.cjs",
25
- "build": "make clean; make install",
26
- "publish": "for x in bump git publish-main publish-platforms; do make $x; done"
25
+ "buildpkg": "make clean; make install",
26
+ "prep": "make bump; make git",
27
+ "update": "make publish-main; make publish-platforms;",
28
+ "build": "npm run buildpkg; npm run prep; npm run update;"
27
29
  },
28
30
  "keywords": [
29
31
  "package-manager",
@@ -52,13 +54,13 @@
52
54
  "author": "Connor Etherington <connor@agentics.co.za>",
53
55
  "license": "MIT",
54
56
  "optionalDependencies": {
55
- "cxpher-linux-arm32": "2.0.9",
56
- "cxpher-linux-arm64": "2.0.9",
57
- "cxpher-linux-x64": "2.0.9",
58
- "cxpher-linux-x86": "2.0.9",
59
- "cxpher-win-arm32": "2.0.9",
60
- "cxpher-win-arm64": "2.0.9",
61
- "cxpher-win-x64": "2.0.9",
62
- "cxpher-win-x86": "2.0.9"
57
+ "cxpher-linux-arm32": "2.0.12",
58
+ "cxpher-linux-arm64": "2.0.12",
59
+ "cxpher-linux-x64": "2.0.12",
60
+ "cxpher-linux-x86": "2.0.12",
61
+ "cxpher-win-arm32": "2.0.12",
62
+ "cxpher-win-arm64": "2.0.12",
63
+ "cxpher-win-x64": "2.0.12",
64
+ "cxpher-win-x86": "2.0.12"
63
65
  }
64
66
  }