-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.05 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
{
"name": "@toruslabs/metadata-helpers",
"version": "6.0.0",
"description": "Helper methods for metadata",
"main": "dist/lib.cjs/index.js",
"module": "dist/lib.esm/index.js",
"unpkg": "dist/metadataHelpers.umd.min.js",
"jsdelivr": "dist/metadataHelpers.umd.min.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepack": "npm run build",
"test": "mocha ./test/test.ts",
"prepare": "husky"
},
"files": [
"dist"
],
"peerDependencies": {
"@babel/runtime": "7.x"
},
"dependencies": {
"@toruslabs/eccrypto": "^5.0.4",
"@toruslabs/http-helpers": "^7.0.0",
"elliptic": "^6.5.7",
"ethereum-cryptography": "^2.2.0",
"json-stable-stringify": "^1.1.1"
},
"devDependencies": {
"@babel/register": "^7.25.9",
"@toruslabs/config": "^2.2.0",
"@toruslabs/eslint-config-node": "^3.3.4",
"@toruslabs/torus-scripts": "^6.1.5",
"@types/elliptic": "^6.4.18",
"@types/json-stable-stringify": "^1.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "^20.14.2",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"author": "Torus Labs",
"license": "MIT",
"lint-staged": {
"!(*d).{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/metadata-helpers.git"
},
"bugs": {
"url": "https://github.com/torusresearch/metadata-helpers/issues"
},
"homepage": "https://github.com/torusresearch/metadata-helpers#readme",
"keywords": [
"metadata-helpers",
"torus-direct-auth",
"torus nodes",
"torus-embed",
"direct auth"
],
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}