-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.52 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.52 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
{
"name": "@padrone/root",
"version": "1.9.0",
"type": "module",
"private": true,
"description": "Create interactive CLI apps with Zod schemas",
"homepage": "https://gkurt.com/padrone/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/KurtGokhan/padrone.git"
},
"license": "MIT",
"author": {
"name": "Gokhan Kurt",
"email": "krtgkn@gmail.com",
"url": "https://gkurt.com"
},
"workspaces": [
".",
"docs",
"packages/*",
"examples/*"
],
"scripts": {
"example": "bun --filter=@padrone/example start",
"start": "bun --filter=padrone start",
"docs": "bun --filter=padrone-docs start",
"test": "bun test --conditions=padrone@dev",
"typecheck": "tsgo",
"lint": "biome lint",
"format": "biome format",
"check": "biome check",
"fix": "biome check --write",
"checks": "bun check && bun run test && bun typecheck",
"prepare": "husky",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:status": "changeset status",
"release": "changeset version"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/bun": "^1.3.11",
"@typescript/native-preview": "7.0.0-dev.20260404.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}