forked from zone117x/stacks-node-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 698 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 698 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
{
"name": "@hirosystems/stacks-node-crawler",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "tsx ./src/index.ts | tee run-log-`date +%s`.txt"
},
"keywords": [],
"author": "Matthew Little",
"license": "ISC",
"engines": {
"node": ">=20"
},
"dependencies": {
"geoip-country": "^4.2.95",
"ip-address": "^9.0.5",
"p-queue": "^8.0.1"
},
"devDependencies": {
"@types/geoip-country": "^4.0.2",
"@types/node": "^20.12.11",
"tsx": "^4.9.3",
"typescript": "^5.4.5"
}
}