-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.25 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "test-coin",
"module": "index.ts",
"version": "1.0.0",
"type": "module",
"scripts": {
"daml:rebuild": "bun daml:token-standard-api && (cd ./daml && daml clean && daml build) && (cd ./daml/test && daml clean && daml build)",
"daml:token-standard-api": "cd ./daml/token-standard-api && daml clean && daml build",
"generate:daml-ts": "rm -rf ./src/types/daml-ts && daml codegen js ./daml/.daml/dist/test-coin-1.0.0.dar -o ./src/types/daml-ts && bun daml-ts:install",
"daml-ts:install": "for dir in ./src/types/daml-ts/*/; do (cd \"$dir\" && bun install); done",
"generate:openapi": "rm -rf ./src/types/openapi-ts && chmod +x ./scripts/generateOpenapi.ts && ./scripts/generateOpenapi.ts",
"generate:all": "rm -rf ./src/types/{daml-ts,openapi-ts} && bun daml:rebuild && bun generate:daml-ts && bun generate:openapi",
"dev": "bun --watch src/index.ts",
"helper:createTransferInstruction": "chmod +x ./scripts/helper/createTransferInstruction.ts && ./scripts/helper/createTransferInstruction.ts",
"helper:createAllocationInstruction": "chmod +x ./scripts/helper/createAllocationInstruction.ts && ./scripts/helper/createAllocationInstruction.ts",
"helper:createAllocation": "chmod +x ./scripts/helper/createAllocation.ts && ./scripts/helper/createAllocation.ts"
},
"dependencies": {
"@canton-network/core-ledger-client": "workspace:*",
"@canton-network/core-token-standard": "workspace:*",
"@canton-network/wallet-sdk": "workspace:*",
"@canton-network/core-types": "workspace:*",
"@canton-network/core-wallet-dapp-remote-rpc-client": "workspace:*",
"@daml/types": "^3.4.10",
"openapi-backend": "^5.15.0",
"openapicmd": "^2.7.0",
"pino": "^10.2.0",
"pino-pretty": "^13.1.3"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.7.4"
},
"peerDependencies": {
"typescript": "^5"
},
"workspaces": [
"splice-wallet-kernel/api-specs",
"splice-wallet-kernel/core/*",
"splice-wallet-kernel/damljs/**",
"splice-wallet-kernel/docs/wallet-integration-guide/examples",
"splice-wallet-kernel/examples/*",
"splice-wallet-kernel/sdk/*",
"splice-wallet-kernel/scripts",
"splice-wallet-kernel/mock-oauth2",
"splice-wallet-kernel/wallet-gateway/*"
]
}