forked from mistakia/nano-node-light
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 Bytes
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
{
"name": "nano-node-light",
"version": "0.0.1",
"type": "module",
"main": "src/nano-node.ts",
"scripts": {
"start": "bun transpile || node ./bin/node.js",
"transpile": "tsc ./example/node.ts --outFile ./bin/node.js"
},
"dependencies": {
"@trashman/ed25519-blake2b": "^0.0.3",
"ed25519": "^0.0.5",
"ip6addr": "^0.2.5"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@types/bun": "^1.1.0",
"@types/debug": "^4.1.12",
"@types/ed25519": "^0.0.3",
"@types/ip6addr": "^0.2.6",
"@types/node": "^20.12.7",
"eslint": "^8.57.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^9.2.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.2"
},
"license": "GPL-3.0",
"trustedDependencies": [
"@trashman/ed25519-blake2b",
"ed25519"
]
}