-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "@koala-ts/cli",
"version": "1.6.2",
"main": "dist/index.js",
"bin": {
"koala-ts": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"description": "KoalaTs cli",
"homepage": "https://koala-ts.github.io/docs/",
"bugs": {
"url": "https://github.com/koala-ts/cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koala-ts/cli.git"
},
"license": "MIT",
"author": {
"name": "Dhemy",
"email": "imdhemy@gmail.com",
"url": "https://imdhemy.com"
},
"keywords": ["koala", "framework", "nodejs", "typescript", "cli"],
"type": "module",
"files": ["dist", "stub"],
"scripts": {
"build": "tsc && tsc-alias && chmod +x dist/index.js",
"test": "vitest run --coverage",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"lint": "biome check",
"lint:fix": "biome check --write",
"format": "biome format",
"format:fix": "biome format --write"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "1.9.4",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^3.1.1",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"vitest": "^3.1.1"
},
"dependencies": {
"commander": "^14.0.0",
"tar": "^7.4.3",
"yoctocolors": "^2.1.1"
}
}