-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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
{
"name": "@solana-wallets/react-2.0",
"description": "",
"version": "0.5.0",
"author": "",
"license": "",
"keywords": [],
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"dev": "pnpm build --watch",
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@solana-wallets/core-2.0": "workspace:*",
"@nanostores/react": "^0.7.3",
"nanostores": "^0.11.3",
"@types/node": "22.1.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tsconfig-paths": "4.2.0",
"tsup": "8.2.4",
"tsx": "4.16.5",
"typescript": "5.5.4"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17",
"nanostores": "^0.11.3",
"@nanostores/react": "^0.7.3"
}
}