-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.06 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
75
76
{
"name": "deso-protocol",
"version": "3.3.2",
"license": "MIT",
"description": "Client side typescript/javascript SDK for building web3 applications for the DeSo blockchain.",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"package": "./scripts/package.sh",
"package:react-native": "./scripts/package-react-native.sh",
"link": "npm run package && cd ./lib && npm i && npm link && cd - && tsc -w",
"prepare": "husky install",
"precommit": "lint-staged && npm run test"
},
"keywords": [
"blockchain",
"crypto",
"decentralized",
"deso",
"social",
"web3"
],
"bugs": {
"url": "https://github.com/deso-protocol/deso-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deso-protocol/deso-js.git"
},
"homepage": "https://github.com/deso-protocol/deso-js#readme",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.yml": [
"prettier --write"
]
},
"dependencies": {
"@noble/hashes": "^1.3.0",
"@noble/secp256k1": "^1.7.1",
"bs58": "^5.0.0",
"ethers": "^5.6.6",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.2",
"bs58check": "^3.0.1",
"elliptic": "^6.5.4",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsonwebtoken": "^9.0.0",
"key-encoder": "^2.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}