-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) 路 1.22 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) 路 1.22 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
{
"name": "kreate-app",
"version": "0.1.0",
"private": true,
"bin": {
"create-kreate-app": "./dist/main.js",
"kreate-app": "./dist/main.js"
},
"workspaces": {
"catalog": {
"effect": "^4.0.0-beta.74",
"@effect/platform-bun": "^4.0.0-beta.74",
"@effect/vitest": "^4.0.0-beta.74",
"@effect/tsgo": "^0.13.0",
"@typescript/native-preview": "latest"
}
},
"type": "module",
"scripts": {
"typecheck": "tsgo --noEmit",
"lint": "oxlint .",
"format": "oxfmt . --write",
"format:check": "oxfmt . --check",
"build": "tsgo",
"dev": "bun run src/main.ts",
"link:global": "bun run build && bun link",
"test": "vitest run",
"test:watch": "vitest",
"precommit": "effect-tsgo patch && bun run typecheck && bun run lint && bun run format && bun run test",
"prepare": "bun run precommit"
},
"dependencies": {
"@effect/platform-bun": "catalog:",
"effect": "catalog:"
},
"devDependencies": {
"@effect/tsgo": "catalog:",
"@effect/vitest": "catalog:",
"@types/bun": "^1.3.14",
"@typescript/native-preview": "catalog:",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"vitest": "^4.1.6"
},
"packageManager": "bun@1.3.14"
}