-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "wtc",
"version": "0.3.0",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "bun run --watch src/index.ts",
"lint": "oxlint",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"check": "tsc --noEmit",
"test": "bun test",
"prepare": "husky",
"build": "bun run scripts/build.ts",
"changeset": "changeset",
"changeset:status": "changeset status",
"changeset:version": "changeset version"
},
"dependencies": {
"@opentui/core": "^0.4.1",
"@opentui/keymap": "^0.4.1",
"@opentui/solid": "^0.4.1",
"solid-js": "^1.9.13",
"yargs": "^18.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/bun": "latest",
"@types/yargs": "^17.0.35",
"husky": "^9.0.0",
"lint-staged": "^17.0.7",
"oxfmt": "^0.54.0",
"oxlint": "^1.69.0"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "bun@1.2.0"
}