-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.57 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
{
"name": "kit-cli",
"version": "0.2.3",
"description": "Effect-powered CLI wrapper around the Kit API v4",
"homepage": "https://github.com/badass-courses/kit-cli#readme",
"bugs": {
"url": "https://github.com/badass-courses/kit-cli/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/badass-courses/kit-cli.git"
},
"bin": {
"kit": "src/index.ts",
"kit-cli": "src/index.ts"
},
"files": [
"src",
"openapi",
"scripts",
"README.md",
"package.json"
],
"type": "module",
"module": "src/index.ts",
"scripts": {
"gen": "bun run scripts/generate-operations.ts",
"build": "bun run gen && bun build src/index.ts --target node --outfile dist/index.js",
"compile": "bun run gen && bun build src/index.ts --compile --outfile dist/kit",
"dev": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "oxfmt --check . && oxlint .",
"format": "oxfmt . --write",
"check": "ultracite check",
"fix": "ultracite fix",
"release:binaries": "bash scripts/build-release-binaries.sh",
"version": "bun run scripts/sync-version.ts && git add package.json src/index.ts"
},
"dependencies": {
"@effect/cli": "^0.73.0",
"@effect/platform": "^0.93.0",
"@effect/platform-node": "^0.104.0",
"effect": "^3.19.2"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@types/bun": "latest",
"oxfmt": "^0.38.0",
"oxlint": "^1.32.0",
"typescript": "^5.9.3",
"ultracite": "7.2.5"
},
"packageManager": "[email protected]"
}