-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.57 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
{
"name": "@gluwa/usc-sdk",
"version": "0.18.0",
"repository": {
"type": "git",
"url": "https://github.com/gluwa/cc-next-query-builder"
},
"description": "Typescript SDK for the USC (Universal Smart Contracts) ecosystem on the Gluwa Creditcoin Network",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"check-format": "prettier --check .",
"format": "prettier --write .",
"start": "node dist/index.js",
"exec": "tsc && node dist/index.js",
"test:smoke": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest --config tests/jest.config.ts tests/smoke/* --coverage=false",
"test:query": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest --config tests/jest.config.ts tests/smoke/query.builder.test.ts --coverage=false",
"test:proof": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest --config tests/jest.config.ts tests/smoke/proof.provider.test.ts --coverage=false",
"test:merkle": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 jest --config tests/jest.config.ts tests/smoke/merkle.test.ts --coverage=false"
},
"devDependencies": {
"@jest/globals": "^30.0.5",
"@types/node": "^26.1.0",
"@types/prompts": "^2.4.9",
"cross-env": "^10.0.0",
"jest": "^30.0.5",
"jest-mock-extended": "^4.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"glob": "^13.0.6"
},
"dependencies": {
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"ethers": "^6.15.0",
"exponential-backoff": "^3.1.3"
},
"author": "Gluwa Inc.",
"license": "MIT"
}