-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "helius-sdk",
"version": "1.4.1",
"description": "SDK for the Helius API (https://helius.xyz)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint \"{src,tests}/**/*.{js,ts}\"",
"format": "prettier --write 'src/**/*.{js,ts,json,md}'"
},
"keywords": [
"helius",
"solana",
"web3",
"crypto",
"api",
"sdk"
],
"author": "Helius",
"license": "ISC",
"devDependencies": {
"@solana/web3.js": "^1.73.2",
"@types/axios": "^0.14.0",
"@types/bs58": "^4.0.4",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@irys/sdk": "^0.2.10",
"@metaplex-foundation/mpl-token-metadata": "^2.5.2",
"axios": "^1.2.3",
"bs58": "^6.0.0"
}
}