-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "frontal-cli",
"version": "0.1.0",
"description": "Frontal platform CLI",
"type": "module",
"bin": {
"frontal": "./dist/bin/frontal.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run bin/frontal.ts",
"build": "tsup && node -e \"const fs=require('fs');const f='dist/bin/frontal.js';const c=fs.readFileSync(f,'utf8');if(!c.startsWith('#!'))fs.writeFileSync(f,'#!/usr/bin/env node\\n'+c)\"",
"type-check": "tsc --noEmit",
"lint": "biome lint src/ tests/",
"format": "biome format --write src/ tests/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "bun run build",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build && changeset publish",
"check": "ultracite check",
"fix": "ultracite fix"
},
"dependencies": {
"commander": "^14.0.3",
"@clack/prompts": "^1.1.0",
"chalk": "^5.4.0",
"cli-table3": "^0.6.5",
"ora": "^8.2.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.9",
"@changesets/cli": "2.30.0",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@types/bun": "^1.3.10",
"@types/node": "^25.3.5",
"@vitest/coverage-v8": "^2.1.8",
"husky": "9.1.7",
"tsup": "^8.0.0",
"typescript": "^5.7.3",
"ultracite": "7.4.0",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18",
"bun": ">=1.3.8"
},
"packageManager": "bun@1.3.8"
}