forked from dialectlabs/blinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.97 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
{
"name": "@dialectlabs/blinks",
"version": "0.9.3",
"license": "Apache-2.0",
"private": false,
"sideEffects": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dialectlabs/blinks"
},
"scripts": {
"build": "tsup-node",
"dev": "tsup-node --watch"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./ext/twitter": {
"import": "./dist/ext/twitter.js",
"require": "./dist/ext/twitter.cjs",
"types": "./dist/ext/twitter.d.ts"
},
"./hooks": {
"import": "./dist/hooks/index.js",
"require": "./dist/hooks/index.cjs",
"types": "./dist/hooks/index.d.ts"
},
"./hooks/solana": {
"import": "./dist/hooks/solana/index.js",
"require": "./dist/hooks/solana/index.cjs",
"types": "./dist/hooks/solana/index.d.ts"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./index.css": "./dist/index.css"
},
"files": [
"dist"
],
"devDependencies": {
"@solana/actions-spec": "~2.2.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.39",
"postcss-prefix-selector": "^1.16.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.3",
"tsup": "^8.2.0",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@solana/wallet-adapter-react": "^0.15.0",
"@solana/wallet-adapter-react-ui": "^0.9.0",
"@solana/web3.js": "^1.95.1",
"react": ">=18",
"react-dom": ">=18"
},
"dependencies": {
"clsx": "^2.1.1"
}
}