-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "ghost-text.nvim",
"author": "wallpants",
"type": "module",
"version": "0.0.0",
"license": "MIT",
"description": "Use Neovim in your browser",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/wallpants/ghost-text.nvim.git"
},
"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} -w",
"logs": "bunvim logs ghost-text",
"typecheck": "tsc",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"check": "bun run typecheck && bun run lint",
"start": "bun run app/index.ts"
},
"dependencies": {
"bunvim": "1.1.13",
"minimatch": "^10.0.1",
"valibot": "^0.30.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@types/bun": "latest",
"@types/eslint": "^9.6.1",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"commitizen": "^4.3.1",
"commitlint": "^19.6.1",
"eslint": "^8.57.1",
"inquirer": "^9.3.7",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"semantic-release": "^24.2.1",
"typescript": "^5.7.2"
}
}