-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
{
"name": "@parifi/sdk",
"version": "2.2.6",
"description": "Parifi SDK with common utility functions",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup ./src",
"prepare": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Parifi/parifi-sdk.git"
},
"keywords": [
"perpetuals",
"defi",
"web3"
],
"author": "Parifi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Parifi/parifi-sdk/issues"
},
"homepage": "https://github.com/Parifi/parifi-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@gelatonetwork/relay-sdk": "^5.5.5",
"@parifi/references": "1.0.6-prod",
"@parifi/synthetix-sdk-ts": "^0.2.10-dev",
"axios": "^1.6.7",
"decimal.js": "^10.4.3",
"dotenv": "^16.4.5",
"ethers": "^6.10.0",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"permissionless": "0.1.16",
"viem": "2.17.1"
}
}