-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.5 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
{
"name": "@andreas-timm/cli",
"version": "0.2.0",
"description": "CAC helpers for Bun and TypeScript CLIs",
"license": "BSD-2-Clause",
"author": {
"name": "Andreas Timm",
"email": "info@andreas-timm.dev"
},
"homepage": "https://github.com/andreas-timm/cli-ts#readme",
"bugs": {
"url": "https://github.com/andreas-timm/cli-ts/issues"
},
"keywords": [
"bun",
"cac",
"cli",
"completion",
"typescript"
],
"type": "module",
"packageManager": "pnpm@11.9.0",
"files": [
"dist",
"src",
"skills",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/andreas-timm/cli-ts.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && bun build src/index.ts --target node --format esm --packages external --outfile dist/index.js && tsc -p tsconfig.build.json",
"lint": "set -x; status=0; biome lint || status=$?; biome check || status=$?; eslint scripts src test || status=$?; tsc --noEmit -p tsconfig.json || status=$?; exit $status",
"test": "bun test test",
"pack": "pnpm pack --config.ignore-scripts=true --pack-destination packs",
"prepack": "bun run build",
"prepublishOnly": "bun run lint && bun test && pnpm audit --audit-level=moderate",
"postpack": "bun scripts/postpack.ts",
"release": "semantic-release",
"release:preview": "node scripts/release-preview.cjs",
"release:publish": "bun scripts/publish.ts"
},
"dependencies": {
"cac": "^7.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.3.13",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.59.1",
"@typescript-eslint/parser": "^8.59.1",
"eslint": "^10.0.0",
"globals": "^17.5.0",
"prettier-plugin-organize-imports": "^4.3.0",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}