-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "@shadow-drive/sdk",
"version": "6.0.0",
"description": "Interfaces for GenesysGo ShadowDrive",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GenesysGo/shadow-drive"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "tsc",
"docs": "typedoc --excludePrivate --includeVersion --out ./docs src",
"test": "jest --forceExit",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.2",
"jest": "^28.1.0",
"jest-config": "^28.1.0",
"react": "^18.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.2",
"ts-jest-resolver": "^2.0.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@coral-xyz/borsh": "^0.28.0",
"@solana/spl-token": "^0.2.0",
"@types/bn.js": "^5.1.1",
"cross-fetch": "^3.1.5",
"form-data": "^4.0.0",
"node-fetch": "2",
"rxjs": "^7.5.5",
"tweetnacl": "^1.0.3"
},
"peerDependencies": {
"react": "^17.0.0 || ^18"
}
}