-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 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
38
39
{
"name": "@omnidotdev/eden-cli",
"version": "0.2.0",
"private": true,
"description": "Developer environment preflight checks",
"type": "module",
"packageManager": "bun@1.3.6",
"repository": {
"type": "git",
"url": "https://github.com/omnidotdev/eden-cli.git"
},
"license": "Apache-2.0",
"author": "Omni <team@omni.dev>",
"scripts": {
"check": "biome check --diagnostic-level=error scripts",
"lint": "biome lint --write scripts",
"format": "biome format --write scripts",
"version": "changeset version && bun scripts/syncVersion.ts",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.12",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.6",
"husky": "^9.1.7"
},
"engines": {
"node": ">=18",
"bun": ">=1.0"
},
"keywords": [
"cli",
"developer-tools",
"onboarding",
"preflight",
"checks"
]
}