@settlemint/dalp-cli 3.1.5-main.32670705612 → 3.1.5-release.32679963579

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 (4) hide show
  1. package/README.md +168 -41
  2. package/dist/dalp.js +191672 -146333
  3. package/package.json +18 -17
  4. package/dist/dalp.js.map +0 -239
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@settlemint/dalp-cli",
3
- "version": "3.1.5-main.32670705612",
3
+ "version": "3.1.5-release.32679963579",
4
4
  "private": false,
5
5
  "description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
6
6
  "homepage": "https://settlemint.com",
@@ -31,28 +31,29 @@
31
31
  "./package.json": "./package.json"
32
32
  },
33
33
  "scripts": {
34
- "codegen": "dalp cli:extract-openapi-surface",
35
- "build": "rm -rf dist && bun build src/bin.ts --target bun --format esm --sourcemap=external --outdir dist --entry-naming dalp.js && printf 'export {};\n' > dist/dalp.d.ts && bun dist/dalp.js --help > /dev/null",
36
- "publint": "publint run --strict --pack bun",
37
- "attw": "archive=$(bun pm pack --destination \"$PWD\" --quiet | tail -n 1) && attw \"$archive\" --ignore-rules cjs-resolves-to-esm; code=$?; rm -f \"$archive\"; exit $code",
38
- "publish": "cp ../../LICENSE . && bun publish --tolerate-republish --ignore-scripts --tag ${TAG:-latest} --access public",
34
+ "build": "bun build src/main.ts --outfile dist/dalp.js --target node && echo '#!/usr/bin/env node' | cat - dist/dalp.js > dist/dalp.tmp && mv dist/dalp.tmp dist/dalp.js && echo 'export {};' > dist/dalp.d.ts",
35
+ "publint": "publint run --strict --pack npm",
36
+ "attw": "attw --pack . --ignore-rules cjs-resolves-to-esm",
37
+ "publish": "cp ../../LICENSE . && npm publish --ignore-scripts --tag ${TAG:-latest} --access public",
39
38
  "prepack": "cp ../../LICENSE .",
40
- "test": "bun test --timeout 30000",
41
- "typecheck": "oxlint --deny-warnings .",
42
- "lint": "oxfmt --check src tests README.md package.json tsconfig.json && ast-grep scan src tests"
39
+ "test": "bun test --parallel=2 --timeout 30000 tests/unit",
40
+ "typecheck": "tsgo"
43
41
  },
44
42
  "dependencies": {
45
- "@settlemint/dalp-sdk": "3.1.5",
46
- "incur": "0.5.1",
47
- "zod": "4.4.3"
43
+ "@core/errors": "workspace:*",
44
+ "@core/validation": "workspace:*",
45
+ "@settlemint/dalp-sdk": "workspace:*",
46
+ "incur": "0.4.8",
47
+ "standardwebhooks": "1.0.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@arethetypeswrong/cli": "0.18.5",
51
- "@tools/typescript-config": "3.1.5",
52
- "@types/bun": "1.4.0",
53
- "publint": "0.3.24"
50
+ "@arethetypeswrong/cli": "0.18.3",
51
+ "@dalp/errors": "workspace:*",
52
+ "@tools/typescript-config": "workspace:*",
53
+ "@types/bun": "1.3.14",
54
+ "publint": "0.3.21"
54
55
  },
55
56
  "engines": {
56
- "bun": ">=1.4.0"
57
+ "node": ">=20"
57
58
  }
58
59
  }