@hewnventures/levrops-sdk 1.5.1 → 1.6.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 +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hewnventures/levrops-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "TypeScript SDK for the LevrOps API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"module": "dist/index.mjs",
|
|
14
14
|
"types": "dist/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
|
-
"dist",
|
|
16
|
+
"dist/**/*",
|
|
17
17
|
"README.md",
|
|
18
18
|
"package.json"
|
|
19
19
|
],
|
|
@@ -22,7 +22,14 @@
|
|
|
22
22
|
"codegen": "openapi --input ../../openapi/levrops.v1.yaml --output src/generated --client fetch --useOptions --useUnionTypes",
|
|
23
23
|
"build": "npm run clean && npm run codegen && tsc -p tsconfig.json",
|
|
24
24
|
"lint": "eslint \"src/**/*.ts\"",
|
|
25
|
-
"test": "echo \"No tests yet\""
|
|
25
|
+
"test": "echo \"No tests yet\"",
|
|
26
|
+
"security:scan": "node scripts/scan-secrets.js",
|
|
27
|
+
"security:verify-pack": "node scripts/verify-pack.js",
|
|
28
|
+
"security:verify-tarball": "node scripts/verify-tarball.js",
|
|
29
|
+
"security:audit": "npm audit --audit-level=moderate",
|
|
30
|
+
"prepack": "npm run build && npm run security:scan && npm run security:verify-pack",
|
|
31
|
+
"postpack": "npm run security:verify-tarball",
|
|
32
|
+
"prepublishOnly": "npm run security:scan && npm run security:audit"
|
|
26
33
|
},
|
|
27
34
|
"dependencies": {
|
|
28
35
|
"undici": "^6.19.6"
|