-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 KB
/
package.json
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
{
"name": "ccamp-examples",
"version": "1.0.0",
"description": "A code walkthrough of integrating the CAAMP network with your code",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node index.ts",
"ccamp:withdraw": "ts-node src/withdraw.ts",
"ccamp:deposit": "ts-node src/deposit.ts",
"ccamp:getbalance": "ts-node src/getbalance.ts",
"ccamp:getprincipal": "ts-node src/getprincipal.ts"
},
"keywords": [
"CCAMP",
"IC",
"internet",
"computer",
"DEFI"
],
"author": "xand6r",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/usherlabs/ccamp-integration-demo.git"
},
"bugs": {
"url": "https://github.com/usherlabs/ccamp-integration-demo/issues"
},
"homepage": "https://github.com/usherlabs/ccamp-integration-demo#readme",
"dependencies": {
"@ccamp/lib": "1.11.3",
"@dfinity/principal": "^0.20.2"
},
"devDependencies": {
"@types/node": "^20.9.0",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}