-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "solana-transactions-wrapper",
"version": "3.0.0",
"description": "Handy tool to execute buy/sell transactions on the SOLANA chain",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --project tsconfig.build.json",
"try": "ts-node src/try.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Al366io/solana-transactions-wrapper.git"
},
"keywords": [
"solana",
"transactions",
"wrapper",
"library",
"jupiter"
],
"author": "al366io",
"license": "MIT",
"bugs": {
"url": "https://github.com/Al366io/solana-transactions-wrapper/issues"
},
"homepage": "https://github.com/Al366io/solana-transactions-wrapper#readme",
"dependencies": {
"@project-serum/anchor": "^0.26.0",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.89.1",
"bs58": "^5.0.0",
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}