-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "@sidekick-coder/lab",
"description": "A developer-friendly CLI for managing and running typed commands globally, eliminating the hassle of node_modules in every project",
"version": "2.1.5",
"type": "module",
"keywords": [
"cli",
"lab",
"utils"
],
"author": "Henrique <henrique@sidekick-coder.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sidekick-coder/db.git"
},
"publishConfig": {
"access": "public"
},
"bin": {
"@sidekick-coder/lab": "./index.js"
},
"scripts": {
"lint": "eslint",
"build": "tsup",
"test": "vitest --typecheck",
"preversion": "npm run lint && npm run test",
"prepublishOnly": "npm run build && npm run test"
},
"dependencies": {
"@inquirer/prompts": "^7.2.4",
"cli-table3": "^0.6.5",
"cliui": "^8.0.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"eslint": "^9.19.0",
"fast-glob": "^3.3.3",
"lodash-es": "^4.17.21",
"yaml": "^2.8.0"
},
"devDependencies": {
"@sidekick-coder/eslint-config": "^1.1.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.10",
"eslint-plugin-import": "^2.31.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9"
}
}