-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@synthetixio/react-sdk",
"description": "Synthetix V3 SDK for React",
"version": "0.0.21",
"license": "MIT",
"author": "Synthetix",
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./src": {
"default": "./src/index.ts"
}
},
"repository": "synthetixio/react-sdk",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"lint": "biome check . --verbose --log-level=info",
"lint:fix": "biome check . --verbose --write --unsafe",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"postpublish": "git push --follow-tags",
"prepublishOnly": "tsc"
},
"dependencies": {
"@pythnetwork/pyth-evm-js": "^1.76.0",
"@synthetixio/v3-contracts": "^7.15.0",
"@tanstack/react-query": "^5.62.8",
"debug": "^4.4.0",
"ethers": "^5.7.2",
"react": "^19.0.0",
"viem": "^2.21.55"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/debug": "^4.1.12",
"@types/react": "^19.0.2",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]"
}