-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.38 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
{
"name": "react-shadow-drive",
"version": "0.1.18",
"description": "Simple React Hook/Utils for GenesysGo ShadowDrive",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/WillSnowdon/react-shadow-drive"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"docs": "typedoc --excludePrivate --includeVersion --out ./docs src",
"test": "jest --forceExit"
},
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@shadow-drive/sdk": "^3.1.1",
"@solana/wallet-adapter-react": "^0.15.28",
"@types/jest": "^27.5.2",
"@types/node": "^17.0.45",
"@types/react": "^18.0.27",
"jest": "^28.1.0",
"jest-config": "^28.1.0",
"parcel": "^2.8.3",
"react": "^18.2.0",
"ts-jest": "^28.0.8",
"ts-jest-resolver": "^2.0.0",
"typedoc": "^0.23.24",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@project-serum/anchor": "*",
"@shadow-drive/sdk": "^3.1.1",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.73.3",
"@solana/wallet-adapter-react": "^0.15.28",
"react": "^17.0.0 || ^18"
},
"dependencies": {
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.73.3"
}
}