-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 4.63 KB
/
Copy pathpackage.json
File metadata and controls
170 lines (170 loc) · 4.63 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "@kjanat/dreamcli",
"version": "3.0.0-rc.11",
"description": "Schema-first, fully typed TypeScript CLI framework",
"keywords": [
"dreamcli",
"cli",
"typescript",
"framework",
"schema-first",
"command-line",
"ansispeck"
],
"homepage": "https://dreamcli.kjanat.dev",
"bugs": {
"url": "https://github.com/kjanat/dreamcli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjanat/dreamcli.git"
},
"license": "MIT",
"author": {
"name": "Kaj Kowalski",
"email": "info@kajkowalski.nl",
"url": "https://github.com/kjanat"
},
"type": "module",
"imports": {
"#dreamcli": "./src/index.ts",
"#dreamcli/runtime": "./src/runtime.ts",
"#dreamcli/testkit": "./src/testkit.ts",
"#internals/*": "./src/*",
"#schema": "./dreamcli.schema.json",
"#package.json": "./package.json"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./runtime": {
"types": "./dist/runtime.d.mts",
"default": "./dist/runtime.mjs"
},
"./testkit": {
"types": "./dist/testkit.d.mts",
"default": "./dist/testkit.mjs"
},
"./version": {
"types": "./dist/version.d.mts",
"default": "./dist/version.mjs"
},
"./package.json": "./package.json",
"./schema": "./dreamcli.schema.json"
},
"files": [
"CHANGELOG.md",
"dist",
"dreamcli.schema.json",
"examples",
"!**/.cache",
"!**/AGENTS.md"
],
"workspaces": ["./examples/*"],
"scripts": {
"bd": "run build",
"build": "bun --bun tsdown",
"build:watch": "run build --watch",
"ci": "run -pk typecheck lint format:check meta-descriptions:check test docs:build bd",
"coverage": "vitest run --coverage",
"dev": "run -p build:watch docs:dev",
"docs:build": "bun --bun vitepress build docs",
"docs:deploy": "wrangler deploy",
"docs:dev": "bun --bun vitepress dev docs --host --port ${PORT:-5173}",
"docs:preview": "bun --bun vitepress preview docs",
"docs:upload": "wrangler versions upload",
"fmt": "run -s lint:fix fmt:dprint",
"fmt:autofix": "dprint fmt --allow-no-files --excludes .github",
"fmt:dprint": "dprint fmt",
"fmt:update": "dprint config update --yes --recursive",
"format": "dprint fmt",
"format:check": "dprint check",
"gh-project": "bun scripts/gh-project.ts",
"gh-project:finish": "bun gh-project finish",
"gh-project:list": "bun gh-project list",
"gh-project:set": "bun gh-project set",
"gh-project:start": "bun gh-project start",
"gh-project:sync": "bun gh-project sync",
"knip": "knip",
"lint": "biome check",
"lint:autofix": "biome check --skip-parse-errors --no-errors-on-unmatched --changed --write",
"lint:fix": "biome check --fix",
"meta-descriptions": "bun --bun scripts/build-meta-descriptions.ts",
"meta-descriptions:check": "bun --bun scripts/build-meta-descriptions.ts --check",
"prepack": "bun --bun tsdown --logLevel silent",
"publish:preview": "bunx pkg-pr-new publish --bun --comment=update --packageManager=bun,npm",
"schema:emit": "bun scripts/emit-definition-schema.ts",
"test": "vitest run",
"test:bun": "bun --bun vitest run",
"test:gh": "run --dir examples/gh test",
"test:node": "npx -y vitest run",
"test:watch": "vitest",
"typecheck": "bunx @typescript/native --noEmit",
"typecheck:gh": "run --dir examples/gh typecheck",
"upgrade": "bun update --latest && bun add -D vitepress@next",
"version:check": "bun scripts/check-version-sync.ts"
},
"overrides": {
"vitepress": "next"
},
"dependencies": {
"ansispeck": "^0.2.0"
},
"devDependencies": {
"@arethetypeswrong/core": "^0.18.5",
"@biomejs/biome": "<=2.5.2 || >=2.5.4",
"@iarna/toml": "^2.2.5",
"@shikijs/transformers": "^4.3.1",
"@shikijs/vitepress-twoslash": "^4.3.1",
"@types/bun": "catalog:",
"@types/deno": "^2.7.0",
"@types/node": "catalog:",
"@typescript/native": "catalog:",
"@vitest/coverage-v8": "^4.1.10",
"dprint": "^0.55.1",
"floating-vue": "^5.2.2",
"knip": "^6.25.0",
"mermaid": "^11.16.0",
"publint": "^0.3.21",
"runner-run": "0.19.1",
"tsdown": "^0.22.4",
"typedoc": "^0.28.20",
"typescript": "catalog:",
"vite": "^8.1.4",
"vitepress": "^2.0.0-alpha.18",
"vitest": "^4.1.10",
"wrangler": "^4.110.0",
"yaml": "^2.9.0"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3",
"deno": ">=2.6.0",
"node": ">=22.22.2"
},
"devEngines": {
"packageManager": {
"name": "bun",
"onFail": "warn"
},
"runtime": {
"name": "bun",
"onFail": "ignore"
}
},
"volta": {
"node": "26.4.0",
"npm": "11.18.0"
},
"publishConfig": {
"access": "public"
},
"catalog": {
"@types/bun": "^1.3.14",
"@types/node": ">=26.1.1",
"@typescript/native": "npm:typescript@^7",
"typescript": ">=6,<7"
}
}