-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "@pyropets/pyrolib",
"version": "1.0.0",
"description": "Library for interacting with PyroPets",
"author": "SeqSEE",
"license": "MIT",
"repository": "PyroPets/pyrolib",
"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": ">=14.0.0"
},
"scripts": {
"test": "mocha --config mocharc.json",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"doc": "npx typedoc src"
},
"devDependencies": {
"@types/locks": "^0.2.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"assert": "^2.0.0",
"eslint": "^8.15.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"dependencies": {
"bs58": "^5.0.0",
"content-hash": "^2.5.2",
"ethers": "^5.6.5",
"locks": "^0.2.2",
"node-fetch": "^2.6.1"
}
}