forked from wallpants/bunvim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.72 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
67
68
69
70
71
72
73
74
75
{
"name": "nvim-node",
"author": "dlants",
"type": "module",
"version": "0.0.2",
"license": "MIT",
"description": "minimalist neovim client for node",
"repository": {
"type": "git",
"url": "git://github.com/dlants/nvim-node.git"
},
"exports": {
".": {
"default": "./src/index.ts",
"types": "./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",
"format": "prettier **/*.{md,ts,yml} -w",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc",
"check": "npm run typecheck && npm run lint"
},
"dependencies": {
"@types/node": "^22.10.5",
"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",
"@swc-node/register": "^1.10.9",
"@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",
"vitest": "^2.1.8"
},
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"bugs": {
"url": "https://github.com/dlants/nvim-node/issues"
},
"homepage": "https://github.com/dlants/nvim-node#readme"
}