forked from roycoprotocol/royco-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.62 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "royco",
"description": "SDK for building frontends on top of Royco Protocol",
"version": "0.9.86",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://royco.org",
"repository": {
"url": "https://github.com/roycoprotocol/royco-sdk"
},
"scripts": {
"build": "tsup",
"release": "pnpm run build && changeset publish",
"lint": "tsc",
"prepare:market-map": "tsx scripts/constants/generate-market-map.ts",
"prepare:token-map": "tsx scripts/constants/generate-token-map.ts"
},
"keywords": [
"royco"
],
"author": "Royco Protocol",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js",
"require": "./dist/client/index.cjs"
},
"./constants": {
"types": "./dist/constants/index.d.ts",
"import": "./dist/constants/index.js",
"require": "./dist/constants/index.cjs"
},
"./contracts": {
"types": "./dist/contracts/index.d.ts",
"import": "./dist/contracts/index.js",
"require": "./dist/contracts/index.cjs"
},
"./hooks": {
"types": "./dist/hooks/index.d.ts",
"import": "./dist/hooks/index.js",
"require": "./dist/hooks/index.cjs"
},
"./market": {
"types": "./dist/market/index.d.ts",
"import": "./dist/market/index.js",
"require": "./dist/market/index.cjs"
},
"./provider": {
"types": "./dist/provider/index.d.ts",
"import": "./dist/provider/index.js",
"require": "./dist/provider/index.cjs"
},
"./queries": {
"types": "./dist/queries/index.d.ts",
"import": "./dist/queries/index.js",
"require": "./dist/queries/index.cjs"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js",
"require": "./dist/types/index.cjs"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.cjs"
}
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@radix-ui/react-icons": "^1.3.0",
"@rainbow-me/rainbowkit": "^2.2.1",
"@supabase-cache-helpers/postgrest-react-query": "^1.6.2",
"@supabase/postgrest-js": "^1.16.3",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.1",
"@tanstack/query-core": "^5.62.1",
"@tanstack/react-query": "^5.62.0",
"@tanstack/react-query-devtools": "^5.61.3",
"@tanstack/react-table": "^8.17.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@wagmi/core": "^2.10.3",
"@weiroll/weiroll.js": "^0.3.0",
"abitype": "^1.0.6",
"autoprefixer": "^10.4.19",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"ethers": "^5.4.4",
"glob": "^10.4.1",
"lucide-react": "^0.379.0",
"postcss": "^8.4.38",
"prettier": "^3.4.1",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.3.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"viem": "^2.21.54",
"wagmi": "^2.8.1",
"zod": "^3.23.8"
},
"dist-hash": "27382c05a5b66ae03c57558dd4ce90fd263683c40902a735efdc4a16916af2da",
"lastPublishedCommit": "4be5a0e801d7884ebef28e83d926d019ff111b07"
}