-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.55 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
54
55
56
57
58
59
60
{
"name": "solana-token-info",
"version": "1.0.0",
"description": "Solana Token and Raydium Pool Information CLI Tool",
"main": "dist/index.js",
"scripts": {
"clean": "[ -d dist ] && rimraf dist || echo 'dist not found, skipping clean'",
"prebuild": "npm run clean",
"build": "tsc",
"pretest": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "ts-node src/index.ts",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"solana",
"blockchain",
"tokens",
"raydium"
],
"author": "",
"license": "ISC",
"dependencies": {
"@project-serum/borsh": "^0.2.5",
"@solana/spl-token": "^0.3.11",
"@solana/web3.js": "^1.98.0",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.74",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ora": "^5.4.1",
"prettier": "^2.8.8",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TatyOko28/Solana-crypto-info.git"
},
"type": "commonjs",
"bugs": {
"url": "https://github.com/TatyOko28/Solana-crypto-info/issues"
},
"homepage": "https://github.com/TatyOko28/Solana-crypto-info#readme"
}