-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 887 Bytes
/
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
{
"name": "starbuccaneer",
"description": "Keep your wifi connectivity alive at Starbucks in Japan.",
"version": "0.1.0",
"bin": {
"starbuccaneer": "dist/starbuccaneer"
},
"scripts": {
"build": "npx tsc -p src/starbuccaneer.ts --outDir dist",
"start": "node dist/starbuccaneer.js"
},
"keywords": [
"starbucks",
"wifi",
"japan"
],
"type": "module",
"author": {
"name": "Michael Charles Aubrey",
"email": "aubrey@michaelcharl.es",
"url": "https://michaelcharl.es/aubrey"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mcaubrey/starbuccaneer/issues"
},
"homepage": "https://github.com/mcaubrey/starbuccaneer",
"module": "src/starbuccaneer.js",
"dependencies": {
"commander": "^9.4.0",
"getmac": "^5.20.0",
"node-fetch": "^3.2.9",
"puppeteer": "^15.5.0",
"typescript": "^4.9.5"
}
}