@lambda-kata/licensing 0.1.0 → 0.1.1
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 +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lambda-kata/licensing",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Tamper-resistant native licensing validator for Lambda Kata Integration",
|
|
5
5
|
"main": "out/dist/index.js",
|
|
6
6
|
"types": "out/tsc/index.d.ts",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"node": ">=18.0.0"
|
|
23
23
|
},
|
|
24
24
|
"os": [
|
|
25
|
-
"linux"
|
|
25
|
+
"linux",
|
|
26
|
+
"darwin"
|
|
26
27
|
],
|
|
27
28
|
"cpu": [
|
|
28
29
|
"x64",
|
|
@@ -47,7 +48,6 @@
|
|
|
47
48
|
"lint": "eslint src/ test/ --ext .ts",
|
|
48
49
|
"lint:fix": "eslint src/ test/ --ext .ts --fix",
|
|
49
50
|
"docs": "typedoc src/index.ts --out docs/",
|
|
50
|
-
"prepack": "yarn build:prebuilt || echo 'WARNING: Prebuilt binaries not available, package may not work correctly'",
|
|
51
51
|
"install": "node scripts/install.js",
|
|
52
52
|
"postinstall": "node scripts/postinstall.js || echo 'Postinstall script failed, using fallback mode'"
|
|
53
53
|
},
|