@settlemint/dalp-cli 3.1.19-main.34690878128 → 3.1.19-release.34335919202
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/README.md +168 -43
- package/dist/dalp.js +208264 -109137
- package/package.json +18 -22
- package/dist/dalp.js.map +0 -185
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/dalp-cli",
|
|
3
|
-
"version": "3.1.19-
|
|
3
|
+
"version": "3.1.19-release.34335919202",
|
|
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,33 +31,29 @@
|
|
|
31
31
|
"./package.json": "./package.json"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"publish": "cp ../../LICENSE . && bun run --cwd ../.. publish-if-absent \"$PWD\"",
|
|
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
|
|
41
|
-
"typecheck": "
|
|
42
|
-
"lint": "oxlint --deny-warnings .",
|
|
43
|
-
"check:openapi-surface-fresh": "bun tools/check-openapi-surface-fresh.ts",
|
|
44
|
-
"test:coverage": "bun --bun vitest run --config node_modules/@tools/vitest-config/vitest.config.mjs --configLoader native --project unit --project browser --testTimeout 30000 --coverage"
|
|
39
|
+
"test": "bun test --parallel=2 --timeout 30000 tests/unit",
|
|
40
|
+
"typecheck": "tsgo"
|
|
45
41
|
},
|
|
46
42
|
"dependencies": {
|
|
47
|
-
"@
|
|
48
|
-
"
|
|
49
|
-
"
|
|
43
|
+
"@core/errors": "workspace:*",
|
|
44
|
+
"@core/validation": "workspace:*",
|
|
45
|
+
"@settlemint/dalp-sdk": "workspace:*",
|
|
46
|
+
"incur": "0.4.8",
|
|
47
|
+
"standardwebhooks": "1.0.0"
|
|
50
48
|
},
|
|
51
49
|
"devDependencies": {
|
|
52
|
-
"@arethetypeswrong/cli": "0.18.
|
|
53
|
-
"@
|
|
54
|
-
"@tools/typescript-config": "
|
|
55
|
-
"@
|
|
56
|
-
"
|
|
57
|
-
"publint": "0.3.24",
|
|
58
|
-
"vitest": "5.0.0"
|
|
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"
|
|
59
55
|
},
|
|
60
56
|
"engines": {
|
|
61
|
-
"
|
|
57
|
+
"node": ">=20"
|
|
62
58
|
}
|
|
63
59
|
}
|