-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@degenfrends/solana-rugchecker",
"version": "0.0.16",
"description": "Rug check for solana tokens. Checks if the token is a rug or not.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest --config jest.config.ts --detectOpenHandles --coverage --maxWorkers=1",
"lint": "tsc",
"release": "pnpm run build && changeset publish"
},
"files": [
"dist/index.js",
"dist/index.mjs",
"dist/index.d.ts"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": "./dist/index.js"
}
},
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@swc/core": "^1.5.28",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@raydium-io/raydium-sdk": "1.3.1-beta.54",
"@solana/web3.js": "^1.92.3",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"helius-sdk": "^1.3.3",
"validator": "^13.12.0",
"web3": "^4.9.0",
"whois": "^2.14.2",
"whois-json": "^2.0.4"
},
"keywords": [
"solana",
"blockchain",
"typescript",
"rugcheck",
"solana-rugcheck",
"security",
"smartcontracts",
"dApp",
"cryptocurrency",
"defi",
"raydium",
"pump.fun",
"solana-development",
"solana-security",
"solidity",
"web3",
"crypto"
]
}