@settlemint/dalp-cli 2.1.2

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/LICENSE +162 -0
  2. package/README.md +141 -0
  3. package/dist/dalp.js +75588 -0
  4. package/package.json +56 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@settlemint/dalp-cli",
3
+ "description": "CLI for the Digital Asset Lifecycle Platform — manage tokens, identities, compliance, and more from the command line.",
4
+ "version": "2.1.2",
5
+ "type": "module",
6
+ "private": false,
7
+ "license": "SEE LICENSE IN LICENSE",
8
+ "author": {
9
+ "name": "SettleMint",
10
+ "email": "support@settlemint.com",
11
+ "url": "https://settlemint.com"
12
+ },
13
+ "homepage": "https://settlemint.com",
14
+ "bugs": {
15
+ "email": "support@settlemint.com"
16
+ },
17
+ "bin": {
18
+ "dalp": "./dist/dalp.js"
19
+ },
20
+ "main": "./dist/dalp.js",
21
+ "exports": {
22
+ ".": "./dist/dalp.js",
23
+ "./package.json": "./package.json"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE"
29
+ ],
30
+ "scripts": {
31
+ "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",
32
+ "publint": "publint run --strict",
33
+ "attw": "attw --pack .",
34
+ "publish": "npm publish --provenance --tag ${TAG:-latest} --access public",
35
+ "prepack": "cp ../../LICENSE .",
36
+ "test": "vitest run --changed main --project unit",
37
+ "typecheck": "tsgo --noEmit"
38
+ },
39
+ "dependencies": {
40
+ "@core/validation": "workspace:*",
41
+ "@dalp/auth": "workspace:*",
42
+ "@dalp/dapi-server": "workspace:*",
43
+ "@orpc/client": "1.13.6",
44
+ "incur": "0.2.2"
45
+ },
46
+ "devDependencies": {
47
+ "@arethetypeswrong/cli": "0.18.2",
48
+ "@tools/typescript-config": "workspace:*",
49
+ "@tools/vitest-config": "workspace:*",
50
+ "@types/bun": "1.3.9",
51
+ "publint": "0.3.18"
52
+ },
53
+ "engines": {
54
+ "node": ">=20"
55
+ }
56
+ }