-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "phan-wallet-mock",
"version": "0.1.0",
"description": "Mock version of Phantom Wallet. ONLY USE FOR TESTING!!!",
"main": "dist/src/phan-wallet-mock.js",
"author": "Thorsten Lorenz <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"prepublish": "yarn build",
"pretest": "yarn build",
"build": "tsc -p ./tsconfig.json",
"test": "tape dist/test/*.test.js",
"test-ts": "esr test/sign-msg.test.ts && esr test/connection.test.ts && esr test/sign-tx.test.ts",
"lint": "prettier -c ./src/",
"lint:fix": "prettier --format ./src",
"doc": "typedoc src/*.ts --readme README.md"
},
"directories": {
"dist": "./dist/src"
},
"files": [
"dist/src/*"
],
"repository": "[email protected]:thlorenz/phan-wallet-mock.git",
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/debug": "^4.1.7",
"@types/node": "^16.11.7",
"@types/tape": "^4.13.2",
"bs58": "^4.0.1",
"esbuild": "^0.13.13",
"esbuild-runner": "^2.2.1",
"prettier": "^2.4.1",
"spok": "^1.4.2",
"tape": "^5.3.2",
"typedoc": "^0.22.8",
"typescript": "^4.4.4"
},
"dependencies": {
"@solana/wallet-adapter-base": "^0.7.0",
"@solana/web3.js": "^1.30.2",
"debug": "^4.3.2",
"supports-color": "^9.0.2",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3"
}
}