-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.47 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bunvim",
"author": "wallpants",
"type": "module",
"version": "0.0.0",
"license": "MIT",
"description": "Neovim bun client",
"repository": {
"type": "git",
"url": "git://github.com/wallpants/bunvim.git"
},
"bin": {
"bunvim": "src/cli/index.ts"
},
"exports": {
"types": "./src/index.ts",
"bun": "./src/index.ts"
},
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"scripts": {
"commit": "cz",
"vi": "nvim",
"format": "prettier **/*.{md,ts,yml} -w",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc",
"check": "bun run typecheck && bun run lint"
},
"dependencies": {
"commander": "^12.1.0",
"msgpackr": "^1.11.2",
"winston": "^3.16.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@types/bun": "^1.1.12",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.13.0",
"commitizen": "^4.3.1",
"commitlint": "^19.5.0",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3"
}
}