-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 799 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
38
{
"name": "datafast-cli",
"version": "1.0.0",
"description": "CLI wrapper for the DataFast analytics API",
"license": "MIT",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"datafast": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.json",
"prepare": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"luxon": "^3.5.0"
},
"devDependencies": {
"@types/luxon": "^3.7.1",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.2.4"
}
}