-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.03 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@centrifuge/sdk",
"version": "0.0.0-alpha.0",
"description": "",
"homepage": "https://github.com/centrifuge/sdk/tree/main#readme",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/centrifuge/sdk.git"
},
"license": "LGPL-3.0-only",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=18.18"
},
"packageManager": "[email protected]",
"scripts": {
"dev": "tsc -w --importHelpers",
"build": "tsc --importHelpers",
"prepare": "yarn build",
"test": "mocha --loader=ts-node/esm --require $(pwd)/src/tests/setup.ts --exit --timeout 60000 'src/**/*.test.ts' --recursive",
"test:simple:single": "mocha --loader=ts-node/esm --exit --timeout 60000",
"test:single": "mocha --loader=ts-node/esm --require $(pwd)/src/tests/setup.ts --exit --timeout 60000",
"test:ci": "yarn test --reporter mocha-multi-reporters --reporter-options configFile=mocha-reporter-config.json",
"test:coverage": "nyc yarn test"
},
"dependencies": {
"decimal.js-light": "^2.5.1",
"eth-permit": "^0.2.3",
"isomorphic-ws": "^5.0.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.7.8",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4",
"chai": "^5.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"mocha": "^10.7.3",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^7.1.3",
"npm-run-all": "4.1.5",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.1",
"viem": "^2.21.25"
},
"peerDependencies": {
"viem": "^2"
},
"stableVersion": "0.0.0-alpha"
}