-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.38 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.38 KB
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
{
"name": "@toruslabs/torus.js",
"version": "17.2.3",
"description": "Handle communication with torus nodes",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/lib.esm/index.js",
"jsdelivr": "dist/lib.esm/index.js",
"types": "dist/lib.cjs/types/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"prepack": "npm run build",
"lint": "torus-scripts lint",
"prepare": "husky",
"test": "vitest run --config test/configs/node.config.mts --coverage"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@toruslabs/constants": "^16.1.1",
"@toruslabs/eccrypto": "^7.0.0",
"@toruslabs/http-helpers": "^9.0.0",
"@toruslabs/metadata-helpers": "^8.2.0",
"ethereum-cryptography": "^3.2.0",
"json-stable-stringify": "^1.3.0",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@babel/register": "^7.28.6",
"@babel/runtime": "^7.29.2",
"@faker-js/faker": "^10.4.0",
"@scure/base": "^2.0.0",
"@toruslabs/config": "^4.0.0",
"@toruslabs/eslint-config-typescript": "^5.0.1",
"@toruslabs/fetch-node-details": "^16.1.1",
"@toruslabs/torus-scripts": "^8.0.1",
"@types/json-stable-stringify": "^1.2.0",
"@types/jsonwebtoken": "^9.0.10",
"@vitest/coverage-istanbul": "^4.1.1",
"cross-env": "^10.1.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jsonwebtoken": "^9.0.3",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.1"
},
"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"
],
"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": ">=22.x",
"npm": ">=10.x"
}
}