-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.46 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
{
"name": "cli-template",
"version": "0.1.0",
"private": true,
"description": "An opinionated Bun and TypeScript CLI scaffold for humans, scripts, and agents",
"keywords": [
"bun",
"cli",
"command-line",
"template",
"typescript"
],
"homepage": "https://github.com/aaronvanston/cli-template#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aaronvanston/cli-template.git"
},
"bin": {
"cli-template": "./src/index.ts"
},
"os": [
"darwin",
"linux"
],
"type": "module",
"scripts": {
"dev": "bun src/index.ts",
"example:server": "bun scripts/example-server.ts",
"docs": "bun scripts/generate-docs.ts",
"rename": "bun scripts/rename.ts",
"typecheck": "tsc --noEmit",
"lint": "ultracite check",
"lint:fix": "ultracite fix",
"test": "bun test",
"build": "bun scripts/build.ts",
"build:release": "bun scripts/build-release.ts",
"ci": "bun run docs && bun run lint && bun run typecheck && bun test && bun run build",
"check": "ultracite check",
"fix": "ultracite fix"
},
"dependencies": {
"@clack/prompts": "^1.7.0",
"commander": "^15.0.0",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.3",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"typescript": "^7.0.2",
"ultracite": "7.9.4"
},
"engines": {
"bun": ">=1.3.0"
}
}