-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 987 Bytes
/
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
{
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@ledgerhq/hw-app-solana": "^7.2.4",
"@ledgerhq/hw-transport-node-hid": "^6.29.5",
"@solana-developers/helpers": "^2.5.6",
"@solana/web3.js": "^1.95.4",
"@solana/spl-token": "^0.4.9",
"@turnkey/sdk-server": "^1.5.0",
"@turnkey/solana": "^1.0.1",
"bs58": "^6.0.0",
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"name": "tinywallet",
"version": "1.0.0",
"main": "dist/core.js",
"author": "kilogold",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^22.8.7",
"jest": "^29.0.0",
"rsync": "^0.6.1",
"ts-jest": "^29.2.5",
"typescript": "^5.4.5"
},
"scripts": {
"build": "rm -fr dist && tsc",
"prepare": "pnpm run build",
"test": "jest --detectOpenHandles"
},
"files": [
"**/*.js",
"**/*.ts",
"**/*.json",
"dist",
"!node_modules"
],
"types": "dist/core.d.ts"
}