-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "cmdore",
"description": "A lightweight, type-safe, and composable CLI framework for modern TypeScript applications",
"version": "0.1.1",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"preprepare": "ts-patch install",
"prepack": "npm run build",
"test": "vitest --no-watch",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"format": "biome format .",
"format:fix": "biome format --fix .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/node": "^22.4.0",
"ts-patch": "^3.2.1",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.4.11",
"vitest": "^3.2.4"
},
"author": "Mateusz Pietrzak",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mzpkdev/cmdore.git"
},
"files": [
"bin/",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.d.ts.map",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"cli-framework"
],
"dependencies": {
"argvex": "^0.0.6",
"logtint": "^0.2.3",
"tslib": "^2.6.3"
}
}