-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
53 lines (53 loc) · 1.6 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": "@project-serum/sol-wallet-adapter",
"version": "0.2.5",
"description": "Library to allow Solana dApps to use third-party wallets to sign transactions",
"license": "Apache-2.0",
"repository": "project-serum/sol-wallet-adapter",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -rf dist && tsc -P tsconfig.build.json && tsc -P tsconfig.esm.json",
"start": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "run-s clean build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "cd example && yarn install && cd .. && eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"@solana/web3.js": "^1.5.0"
},
"devDependencies": {
"@solana/web3.js": "^1.29.2",
"@types/bs58": "^4.0.1",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^3.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"react-scripts": "^4.0.3",
"typescript": "^4.3.4"
},
"files": [
"src/",
"dist/"
],
"dependencies": {
"bs58": "^4.0.1",
"eventemitter3": "^4.0.7"
}
}