-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 755 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 755 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": "nightscout-migrate",
"version": "1.0.0",
"description": "CLI tool to migrate data between Nightscout instances",
"type": "module",
"main": "dist/index.js",
"bin": {
"nightscout-migrate": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js"
},
"keywords": [
"nightscout",
"diabetes",
"migration",
"cgm"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.2.23",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.14.0",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}