-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.07 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
{
"name": "@bitspark/bitnode",
"version": "1.0.0",
"type": "module",
"description": "Bitnode implementation in JavaScript/TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist && rimraf --glob \"src/**/*.js\"",
"build": "npm run clean && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Bitspark/bitnode-js"
},
"keywords": [
"bitnode"
],
"author": {
"name": "Bitspark GmbH",
"email": "info@bitspark.com",
"url": "https://bitspark.com"
},
"contributors": [
{
"name": "Julian Matschinske",
"email": "julian.matschinske@bitspark.com"
}
],
"license": "Apache Version 2.0",
"bugs": {
"url": "https://github.com/Bitspark/bitnode-js/issues"
},
"homepage": "https://bitnode.dev",
"devDependencies": {
"@types/node": "^20.3.1",
"@types/ws": "^8.5.5",
"eslint": "^8.43.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.3",
"ws": "^8.13.0"
},
"dependencies": {
"rxjs": "^7.8.1"
}
}