-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
108 lines (108 loc) · 2.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@saberhq/sail",
"version": "4.1.0",
"description": "Account caching and batched loading for React-based Solana applications.",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"keywords": [
"solana",
"blockchain",
"react",
"saber"
],
"author": "Ian Macalinao <[email protected]>",
"homepage": "https://sail.saber.so",
"license": "Apache-2.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/saber-hq/sail/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saber-hq/sail.git"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.cjs.json",
"clean": "rm -fr dist/",
"lint": "eslint . --cache",
"lint:ci": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"docs:generate": "typedoc --excludePrivate --includeVersion --out site/ts/ src/index.ts",
"prepare": "husky install"
},
"devDependencies": {
"@project-serum/anchor": "^0.24.2",
"@rushstack/eslint-patch": "^1.8.0",
"@saberhq/anchor-contrib": "^1.13.30",
"@saberhq/eslint-config-react": "^3.2.1",
"@saberhq/solana-contrib": "^1.13.30",
"@saberhq/token-utils": "^1.13.30",
"@saberhq/tsconfig": "^3.2.1",
"@saberhq/use-solana": "^1.13.30",
"@solana/web3.js": "^1.44.2",
"@types/lodash.chunk": "^4.2.7",
"@types/lodash.mapvalues": "^4.6.7",
"@types/lodash.uniq": "^4.5.7",
"@types/lodash.zip": "^4.2.7",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/retry": "^0.12.2",
"@yarnpkg/doctor": "^4.0.0-rc.9",
"bn.js": "^5.2.1",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jsbi": "^4.3.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.1",
"typedoc": "^0.25.12",
"typescript": "~5.3"
},
"dependencies": {
"dataloader": "^2.1.0",
"eventemitter3": "^4.0.7",
"lodash.chunk": "^4.2.0",
"lodash.mapvalues": "^4.6.0",
"lodash.uniq": "^4.5.0",
"lodash.zip": "^4.2.0",
"retry": "^0.13.1",
"tiny-invariant": "^1.2.0",
"tslib": "^2.4.0",
"unstated-next": "^1.1.0",
"use-debounce": "^8.0.1"
},
"peerDependencies": {
"@project-serum/anchor": ">=0.24",
"@saberhq/anchor-contrib": "^1.13",
"@saberhq/solana-contrib": "^1.13",
"@saberhq/token-utils": "^1.13",
"@saberhq/use-solana": "^1.13",
"@solana/web3.js": "^1.44.2",
"bn.js": "^5.2.1",
"jsbi": "^3 || ^4",
"react": "^18",
"react-dom": "^18",
"react-query": "^3"
},
"packageManager": "[email protected]",
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{json,js,jsx,html,css,md,yml,yaml}": "prettier --write"
}
}