-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.63 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@mempool/mempool.js",
"version": "3.0.0",
"description": "NPM package module for Mempool APIs.",
"main": "lib/index.js",
"keywords": [
"axios",
"bitcoin",
"liquid",
"mainet",
"testnet",
"testnet4",
"signet",
"blockchain",
"html",
"mempool.space",
"mempool.js",
"mempool",
"websocket",
"nodejs",
"typescript"
],
"author": "Miguel Medeiros <contact@miguelmedeiros.com.br> (miguelmedeiros.com.br)",
"url": "https://mempool.space/",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mempool/mempool.js.git"
},
"types": "lib/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"export-mempool-js": "tsc | browserify -p esmify lib/index.js --standalone mempoolJS > dist/mempool.js | browserify -p tinyify -p esmify lib/index.js --standalone mempoolJS > dist/mempool.min.js",
"prepare": "npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"dependencies": {
"axios": "1.13.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/websocket": "^1.0.10",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"browserify": "^17.0.1",
"eslint": "^9.39.1",
"esmify": "^2.1.1",
"nodemon": "^3.1.11",
"tinyify": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"terser": "^5.14.2",
"babel-traverse": "npm:@babel/traverse@^7.23.2"
},
"license": "MIT"
}