-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
{
"name": "@parifi/synthetix-sdk-ts",
"version": "0.4.20",
"description": "A Typescript SDK for interactions with the Synthetix protocol",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup ./src",
"prepare": "npm run build",
"test": "jest",
"test perps": "jest tests/perps",
"test core": "jest tests/core",
"test spot": "jest tests/spot",
"lint": "eslint . --ext .ts",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Parifi/synthetix-sdk-ts.git"
},
"keywords": [
"perpetuals",
"defi",
"web3"
],
"author": "Parifi",
"bugs": {
"url": "https://github.com/Parifi/synthetix-sdk-ts/issues"
},
"homepage": "https://github.com/Parifi/synthetix-sdk-ts#readme",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/jest": "^29.5.12",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.26.7",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"@pythnetwork/pyth-evm-js": "^1.68.0",
"@synthetixio/v3-contracts": "7.18.0",
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"tslog": "^4.9.3",
"viem": "2.21.53"
}
}