-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 954 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 954 Bytes
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
{
"name": "@bquery/setup",
"version": "0.1.0",
"description": "A TypeScript CLI tool to set up a local bQuery project",
"type": "module",
"main": "dist/index.js",
"bin": {
"create-bquery": "dist/index.js",
"bquery-setup": "dist/index.js"
},
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean --tsconfig tsconfig.build.json",
"dev": "tsup src/index.ts --format esm --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": ["bquery", "cli", "scaffold", "setup"],
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.11.0",
"commander": "^14.0.3",
"fs-extra": "^11.3.4",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
},
"engines": {
"node": ">=20"
}
}