-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 781 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 781 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
{
"name": "hakonook",
"version": "0.8.0",
"type": "module",
"description": "Fast CLI for managing local development projects",
"author": "",
"license": "MIT",
"bin": {
"hako": "./dist/hako"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile ./dist/hako",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"commander": "^12.1.0",
"fuse.js": "^7.0.0",
"ink": "^5.0.1",
"octokit": "^4.0.2",
"picocolors": "^1.1.1",
"react": "^18.3.1",
"simple-git": "^3.27.0",
"smol-toml": "^1.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.3.12",
"react-devtools-core": "^7.0.1",
"typescript": "^5.6.3"
}
}