-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "@metrixcoin/metrilib",
"version": "1.6.2-beta",
"description": "Library for interacting with MetriVerse",
"author": "SeqSEE",
"license": "MIT",
"repository": "TheLindaProjectInc/metrilib",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=18.0.0"
},
"scripts": {
"test": "mocha --config mocharc.json",
"lint": "eslint .",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"doc": "npx typedoc src",
"clean": "rimraf lib docs"
},
"devDependencies": {
"@types/locks": "^0.2.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"assert": "^2.0.0",
"eslint": "^9.9.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.8.0",
"typedoc": "^0.26.5",
"typescript": "5.5.4"
},
"dependencies": {
"bs58": "^6.0.0",
"content-hash": "^2.5.2",
"ethers": "^6.0.2",
"locks": "^0.2.2",
"node-fetch": "^2.6.1"
}
}