-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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
{
"name": "timberlogs-cli",
"version": "1.1.1",
"description": "Official Timberlogs CLI — query logs, inspect flows, view stats from your terminal",
"keywords": [
"timberlogs",
"logging",
"cli",
"structured-logging",
"observability"
],
"author": "enaboapps",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/enaboapps/timberlogs-cli.git"
},
"homepage": "https://timberlogs.dev",
"bugs": {
"url": "https://github.com/enaboapps/timberlogs-cli/issues"
},
"type": "module",
"bin": {
"timberlogs": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/",
"test": "vitest run",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"ink": "^5.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"pastel": "^3.0.0",
"react": "^18.3.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@sindresorhus/tsconfig": "^7.0.0",
"@types/react": "^18.3.18",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "5.2.0",
"tsup": "^8.4.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}