-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "@sidekick-coder/lab-core",
"description": "Collection of utilities for CLI applications",
"version": "1.1.0",
"type": "module",
"keywords": [
"cli",
"lab",
"utils"
],
"author": "Henrique <henrique@sidekick-coder.com>",
"license": "MIT",
"scripts": {
"lint": "eslint",
"build": "tsup",
"test": "vitest --typecheck"
},
"dependencies": {
"@inquirer/prompts": "^7.2.4",
"@sidekick-coder/db": "file:../db",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"cliui": "^8.0.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"node-windows": "^1.0.0-beta.8",
"qs": "^6.14.0",
"undici": "^7.3.0",
"valibot": "^1.0.0-rc.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@sidekick-coder/eslint-config": "^1.1.0",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.10",
"@types/node-windows": "^0.1.6",
"@types/qs": "^6.9.18",
"eslint-plugin-import": "^2.31.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3"
}
}