forked from GenesysGo/shadow-drive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "@kryptonxyz/shadow-drive",
"version": "1.0.2",
"description": "Modified Interfaces for GenesysGo ShadowDrive",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/kryptonxyz/shadow-drive"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"src",
"dist",
"tsconfig.json"
],
"license": "MIT",
"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",
"@types/react": "^18.0.9",
"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": {
"@project-serum/anchor": "^0.24.2",
"@solana/spl-token": "^0.2.0",
"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"
}
}