-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.5 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.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
{
"name": "zero-setup-biome",
"version": "0.1.2",
"description": "Zero-config CLI to scaffold React + TypeScript projects with Biome",
"type": "module",
"bin": {
"zero-setup-biome": "dist/cli.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"commander": "^12.1.0",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"picocolors": "^1.1.1",
"semver": "^7.7.3"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.1",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.15",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"biome",
"react",
"typescript",
"vite",
"scaffolding"
],
"author": "AsierDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AsierDev/zero-setup-biome.git"
},
"bugs": {
"url": "https://github.com/AsierDev/zero-setup-biome/issues"
},
"homepage": "https://github.com/AsierDev/zero-setup-biome#readme"
}