-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.81 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
72
73
74
{
"name": "solone-sdk",
"version": "1.0.10",
"description": "javascript sdk for solona",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"check-types": "tsc --noEmit",
"clean": "rimraf build",
"build:js": "tsc",
"build": "npm-run-all clean build:js",
"test": "jest",
"test:clear-cache": "jest --clearCache",
"test:coverage": "jest --coverage --watchAll=false || exit 0",
"coverage": "npm-run-all test:*",
"lint": "eslint 'src/**/*.ts' --fix",
"docs:build": "typedoc",
"docs:serve": "serve docs",
"serve-docs": "npm-run-all docs:*",
"pre-commit": "npm-run-all check-types lint"
},
"author": "aqadir64",
"license": "ISC",
"dependencies": {
"@solana/web3.js": "^1.29.0",
"axios": "^0.22.0",
"borsh": "^0.6.0",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.22.5"
},
"files": [
"dist/**/*"
],
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"repository": "https://github.com/solone-io/Solone-SDK.git",
"bugs": {
"url": "https://github.com/solone-io/Solone-SDK/issues"
},
"homepage": "https://github.com/solone-io/Solone-SDK#readme",
"keywords": [
"solana",
"solana-sdk",
"solana-web3",
"blockchain",
"sdk",
"solone",
"dapp",
"ethereum",
"web3",
"solana-development",
"api",
"@solana/web3.js"
]
}