-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 777 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 777 Bytes
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
{
"name": "docs-wallet-integration-guide-examples",
"version": "1.0.0",
"private": true,
"description": "Example typescripts to be used in combination with the wallet integration guide.",
"author": "Phillip Olesen <phillip.olesen@digitalasset.com>",
"license": "Apache-2.0",
"packageManager": "yarn@4.9.4",
"type": "module",
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"run-1": "tsx script.ts | pino-pretty"
},
"devDependencies": {
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@canton-network/wallet-sdk": "^0.21.1",
"@types/node": "^24.3.0",
"pino": "9.7.0",
"pino-pretty": "^13.0.0",
"uuid": "^11.1.0"
}
}