-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1016 Bytes
/
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
{
"name": "@centrifuge/centrifuge-sdk",
"version": "0.0.0",
"description": "",
"homepage": "https://github.com/centrifuge/centrifuge-sdk/tree/main#readme",
"author": "",
"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"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"eslint": "^9.12.0",
"globals": "^15.11.0",
"npm-run-all": "4.1.5",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.1",
"viem": "^2.21.25"
},
"peerDependencies": {
"viem": "^2"
}
}