forked from yuga-labs/glyph-sdk-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.56 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.56 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
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
{
"name": "@use-glyph/sdk-react",
"version": "1.0.5",
"type": "module",
"license": "GLYPH-1.0",
"sideEffects": false,
"main": "dist/glyph-widget.umd.js",
"module": "dist/glyph-widget.es.js",
"types": "dist/types/index.d.ts",
"exports": {
".": [
{
"types": "./dist/types/index.d.ts",
"require": "./dist/glyph-widget.umd.js",
"import": "./dist/glyph-widget.es.js"
}
],
"./*": [
"./src/*.ts",
"./src/*.tsx"
],
"./style.css": {
"import": "./dist/assets/sdk-react.css",
"require": "./dist/assets/sdk-react.css"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"watch:unix": "test -f .env && export $(cat .env | xargs) || true && vite build --watch",
"watch:windows": "if exist .env (set /p env=<.env && vite build --watch) else (vite build --watch)",
"watch": "node -e \"process.platform === 'win32' ? require('child_process').execSync('npm run watch:windows', {stdio: 'inherit'}) : require('child_process').execSync('npm run watch:unix', {stdio: 'inherit'})\"",
"build:unix": "test -f .env && export $(cat .env | xargs) || true && vite build",
"build:windows": "if exist .env (set /p env=<.env && vite build) else (vite build)",
"build": "node -e \"process.platform === 'win32' ? require('child_process').execSync('npm run build:windows', {stdio: 'inherit'}) : require('child_process').execSync('npm run build:unix', {stdio: 'inherit'})\"",
"prebuild": "rimraf dist",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"path": "^0.12.7",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tailwind-scrollbar": "3.1.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "6.1.0",
"vite-plugin-dts": "^4.5.0"
},
"peerDependencies": {
"@privy-io/cross-app-connect": "^0.2.1",
"@privy-io/react-auth": "^2.13.1",
"@privy-io/wagmi": "^1.0.3",
"@rainbow-me/rainbowkit": "^2.2.4",
"@tanstack/react-query": "^5.76.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"viem": "^2.29.2",
"wagmi": "^2.15.2"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.10",
"@radix-ui/react-dialog": "1.1.13",
"@radix-ui/react-popover": "^1.1.13",
"@radix-ui/react-select": "2.2.4",
"@radix-ui/react-slot": "^1.2.2",
"@radix-ui/react-tooltip": "1.2.6",
"@types/throttle-debounce": "5.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.510.0",
"qrcode.react": "^4.2.0",
"sonner": "2.0.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"throttle-debounce": "5.0.2",
"truncate-eth-address": "1.0.2",
"vaul": "1.1.2"
}
}