-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.84 KB
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": "github-preview.nvim",
"version": "0.0.0",
"private": true,
"description": "Live preview of local github repos",
"license": "MIT",
"author": "wallpants",
"repository": {
"type": "git",
"url": "git://github.com/wallpants/github-preview.nvim.git"
},
"type": "module",
"scripts": {
"commit": "cz",
"format": "oxfmt .",
"logs": "bunvim logs github-preview",
"lint": "oxlint .",
"typecheck": "tsc",
"test": "bun test",
"test:nvim": "nvim --headless --noplugin -u tests/minimal_init.lua -c \"PlenaryBustedDirectory tests/ {minimal_init = 'tests/minimal_init.lua'}\"",
"check": "bun run typecheck && bun run lint && bun run test"
},
"dependencies": {
"bun-plugin-tailwind": "^0.1.2",
"bunvim": "1.3.0",
"clsx": "^2.1.1",
"globby": "^16.2.2",
"isbinaryfile": "6.0.0",
"mermaid": "^11.16.0",
"opener": "^1.5.2",
"pantsdown": "2.2.7",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"reconnecting-websocket": "^4.4.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/cz-commitlint": "^21.2.0",
"@types/bun": "1.3.14",
"@types/opener": "^1.4.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"commitizen": "^4.3.2",
"commitlint": "^21.2.1",
"inquirer": "^12.11.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.73.0",
"oxlint-tsgolint": "^0.25.0",
"semantic-release": "^25.0.8",
"typescript": "7.0.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"branches": [
"main"
]
}
}