-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.54 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.54 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "bun-ts-cli-starter",
"displayName": "Bun TS CLI Starter",
"version": "1.2.0",
"description": "My starter kit for developing CLI apps with Bun, TypeScript and other useful tools.",
"keywords": [
"cli",
"bun",
"typescript"
],
"homepage": "https://github.com/deepfriedmind/bun-ts-cli-starter#readme",
"bugs": {
"url": "https://github.com/deepfriedmind/bun-ts-cli-starter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepfriedmind/bun-ts-cli-starter.git"
},
"license": "MIT",
"author": "deepfriedmind",
"type": "module",
"exports": "./dist/index.js",
"main": "dist/index.js",
"bin": {
"bun-ts-cli-starter": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun clean && bun build src/index.ts --outdir dist --target node --minify --banner '#!/usr/bin/env node'",
"check": "bun lint:fix && bun type-check && bun knip && bun test",
"clean": "rm -rf dist",
"demo:fonts": "bun scripts/render-all-fonts.ts",
"knip": "knip",
"lint": "bun ultracite check",
"lint:fix": "bun ultracite fix",
"lint:summary": "biome check --reporter=summary --max-diagnostics none",
"prepare": "bunx simple-git-hooks",
"release": "dotenv release-it --",
"start": "bun src/index.ts",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test:integration": "bun test integration.test.ts",
"test:watch": "bun test --watch",
"type-check": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "bun check",
"prepare-commit-msg": "bunx devmoji --edit"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.2",
"consola": "^3.4.2",
"figlet": "^1.9.4",
"gradient-string": "^3.0.0",
"terminal-link": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@release-it/conventional-changelog": "^10.0.4",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.6",
"@types/node": "^24",
"devmoji": "^2.3.0",
"dotenv-cli": "^11.0.0",
"knip": "^5.81.0",
"release-it": "^19.2.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"ultracite": "7.0.11"
},
"packageManager": "bun@1.3.6",
"engines": {
"node": ">= 16"
},
"devEngines": {
"runtime": {
"name": "bun",
"version": ">= 1.3.0",
"onFail": "warn"
},
"packageManager": {
"name": "bun",
"version": ">= 1.3.0",
"onFail": "warn"
}
},
"overrides": {
"conventional-changelog-conventionalcommits": "8.0.0"
}
}