-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@bootnodedev/canton-token-forge",
"version": "0.2.0",
"description": "A reusable, multi-instrument CIP-0056 (CN Token Standard) compliant token for demos and sandboxes, plus its read-only registry HTTP service",
"license": "MIT",
"type": "module",
"scripts": {
"setup": "bash scripts/fetch-dep.sh",
"clean": "rm -rf daml/canton-token-forge/.daml daml/canton-token-forge-test/.daml consumer-smoke/consumer/.daml consumer-smoke/consumer/vendor registry/dist",
"smoke": "bash scripts/consumer-smoke.sh",
"smoke:registry": "bash scripts/registry-install-smoke.sh",
"check:deps": "node scripts/check-registry-deps.mjs",
"build": "cd daml/canton-token-forge && LANG=C.UTF-8 dpm build && cd ../canton-token-forge-test && LANG=C.UTF-8 dpm build",
"build:canton-token-forge": "cd daml/canton-token-forge && LANG=C.UTF-8 dpm build",
"sandbox": "bash scripts/sandbox.sh",
"seed": "node scripts/seed.mjs",
"test": "npm run build:canton-token-forge && cd daml/canton-token-forge-test && LANG=C.UTF-8 dpm test",
"test:coverage": "npm run build:canton-token-forge && cd daml/canton-token-forge-test && LANG=C.UTF-8 dpm test --all --show-coverage --coverage-ignore-choice '^splice' --coverage-ignore-choice ':Archive$'",
"prepare": "rm -rf registry/dist && tsc -p registry/tsconfig.json"
},
"repository": "github:BootNodeDev/canton-token-forge",
"engines": { "node": ">=20" },
"bin": { "canton-token-forge-registry": "registry/dist/index.js" },
"files": ["registry/dist", "registry/openapi", "registry/.env.example"],
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-openapi-validator": "^5.6.2",
"pino": "^10.3.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^26.1.1",
"typescript": "^5.5.4"
}
}