-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 836 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 836 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
{
"name": "TODO",
"module": "src/index.ts",
"type": "module",
"version": "0.0.0",
"author": "koki-develop <kou.pg.0131@gmail.com>",
"homepage": "https://github.com/koki-develop/TODO",
"repository": {
"type": "git",
"url": "git+https://github.com/koki-develop/TODO.git"
},
"license": "MIT",
"bin": {
"TODO": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"fmt": "biome check --write --unsafe .",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"build": "bun run ./scripts/build.ts",
"prepublishOnly": "bun run build"
},
"dependencies": {
"commander": "14.0.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/bun": "1.3.4",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"typescript": "5.9.3"
}
}