-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
98 lines (98 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@toruslabs/torus.js",
"version": "15.1.1",
"description": "Handle communication with torus nodes",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/torusUtils.umd.min.js",
"jsdelivr": "dist/torusUtils.umd.min.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "cross-env NODE_ENV=test mocha",
"prepare": "husky"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@toruslabs/constants": "^14.0.0",
"@toruslabs/bs58": "^1.0.0",
"@toruslabs/eccrypto": "^5.0.4",
"@toruslabs/http-helpers": "^7.0.0",
"bn.js": "^5.2.1",
"elliptic": "^6.5.7",
"ethereum-cryptography": "^2.2.1",
"json-stable-stringify": "^1.1.1",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@babel/register": "^7.25.7",
"@babel/runtime": "^7.25.7",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-typescript": "^3.3.4",
"@toruslabs/fetch-node-details": "^14.0.1",
"@toruslabs/torus-scripts": "^6.1.5",
"@types/chai": "^5.0.0",
"@types/elliptic": "^6.4.18",
"@types/json-stable-stringify": "^1.0.36",
"@types/jsonwebtoken": "^9.0.7",
"@types/mocha": "^10.0.9",
"@types/sinon": "^17.0.3",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"@faker-js/faker": "^9.0.3",
"husky": "^9.1.6",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/torus.js.git"
},
"keywords": [
"torus.js",
"key assign",
"get public address",
"torus nodes",
"torus-embed",
"torus-website",
"torus-utils",
"elliptic"
],
"author": "Chaitanya Potti",
"license": "MIT",
"bugs": {
"url": "https://github.com/torusresearch/torus.js/issues"
},
"homepage": "https://github.com/torusresearch/torus.js#readme",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json, md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}