forked from GabrielePicco/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 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
{
"name": "@solana/wallet-adapter-react-ui-starter",
"version": "0.9.18",
"author": "Solana Maintainers <maintainers@solana.foundation>",
"repository": "https://github.com/solana-labs/wallet-adapter",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"files": [
"src",
".editorconfig",
".env",
".gitignore",
".prettierignore",
".prettierrc",
"LICENSE",
"package.json",
"tsconfig.json"
],
"scripts": {
"build": "tsc --build --verbose && parcel build src/index.html",
"clean": "shx mkdir -p .parcel-cache dist lib && shx rm -rf .parcel-cache dist lib",
"lint": "prettier --check 'src/{*,**/*}.{ts,tsx,js,jsx,json}' && eslint",
"start": "parcel src/index.html"
},
"dependencies": {
"@solana/wallet-adapter-base": "workspace:^",
"@solana/wallet-adapter-react": "workspace:^0.15.30",
"@solana/wallet-adapter-react-ui": "workspace:^0.9.29",
"@solana/wallet-adapter-wallets": "workspace:^0.19.15",
"@solana/web3.js": "^1.74.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"parcel": "^2.8.3",
"prettier": "^2.8.4",
"process": "^0.11.10",
"shx": "^0.3.4",
"typescript": "~4.7.4"
}
}