-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 KB
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
{
"name": "@velocity-exchange/react",
"version": "1.0.0",
"description": "Common building blocks for connecting to the Velocity Exchange program from React",
"main": "lib/index.js",
"repository": "https://github.com/velocity-exchange/velocity-common",
"author": "Velocity Exchange",
"license": "MIT",
"scripts": {
"lint": "oxlint -c ../.oxlintrc.json . --quiet",
"build": "bun clean && tsc && bun copy-files",
"build:watch": "bun clean && tsc --watch",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.css lib/",
"clean": "rm -rf lib"
},
"directories": {
"lib": "lib"
},
"devDependencies": {
"@solana/spl-token": "0.3.8",
"@solana/web3.js": "1.98.0",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@velocity-exchange/sdk": "0.10.0",
"copyfiles": "2.4.1",
"encoding": "0.1.13",
"lokijs": "1.5.12",
"oxlint": "1.75.0",
"pino-pretty": "10.2.3",
"react": "19.0.3",
"react-dom": "19.0.3",
"typescript": "5.1.6"
},
"peerDependencies": {
"@solana/spl-token": "0.3.8",
"@solana/web3.js": "1.98.0",
"react": "19.0.3",
"react-dom": "19.0.3"
},
"dependencies": {
"@drift/common": "npm:@velocity-exchange/common@0.4.1",
"@floating-ui/react": "0.27.9",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-wallets": "0.19.32",
"@velocity-exchange/icons": "1.0.2",
"dayjs": "1.11.13",
"immer": "10.0.2",
"react-singleton-hook": "4.0.1",
"react-use": "17.4.0",
"tailwind-merge": "2.5.4",
"use-immer": "0.9.0",
"zustand": "4.3.8"
},
"overrides": {
"@types/react": "npm:types-react@19.0.3",
"@types/react-dom": "npm:types-react-dom@19.0.3",
"@ledgerhq/errors": "6.16.3",
"@solana/web3.js": "1.98.0",
"@solana/errors": "2.0.0-preview.4",
"@solana/codecs-data-structures": "2.0.0-preview.4"
},
"resolutions": {
"@types/react": "npm:types-react@19.0.3",
"@types/react-dom": "npm:types-react-dom@19.0.3",
"@ledgerhq/errors": "6.16.3",
"@solana/web3.js": "1.98.0",
"@solana/errors": "2.0.0-preview.4",
"@solana/codecs-data-structures": "2.0.0-preview.4"
}
}