-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 904 Bytes
/
package.json
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
{
"dependencies": {
"chalk": "^5.3.0",
"debug": "^4.3.4",
"marked": "^11.1.1",
"marked-emoji": "^1.3.1",
"meow": "^13.1.0",
"type-fest": "^4.10.1"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4"
},
"scripts": {
"commitlint": "commitlint --edit",
"remove-cache": "rm -rf ~/.config/changed-bun/cache.db",
"start": "bun run src/index.ts",
"start-debug": "DEBUG=* bun run src/index.ts",
"prepare": "husky"
},
"name": "changed-bun",
"version": "0.1.1",
"license": "MIT",
"bin": {
"chgd": "src/index.ts",
"changed": "src/index.ts"
},
"module": "src/index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.0.0"
}
}