-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 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
76
77
78
79
{
"name": "pulldash",
"version": "0.0.5",
"description": "Fast, filterable PR review. Entirely client-side.",
"type": "module",
"bin": {
"pulldash": "./dist/pulldash"
},
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"bun run build:browser --watch\" \"bun run dev:node\"",
"dev:node": "bun run src/node/main.ts",
"typecheck": "tsgo --noEmit",
"build:browser": "bun run ./scripts/build-browser.ts",
"fmt": "prettier --write --cache .",
"fmt:check": "prettier --check .",
"create-github-app": "bun run ./scripts/create-github-app.ts",
"lint": "echo 'No linter configured yet'",
"test": "bun test"
},
"keywords": [
"github",
"pull-request",
"code-review",
"diff",
"cli"
],
"license": "AGPL-3.0-only",
"author": {
"name": "Coder",
"email": "support@coder.com",
"url": "https://coder.com"
},
"dependencies": {
"@hono/node-server": "^2.0.2",
"@tanstack/query-async-storage-persister": "^5.101.1",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-query-devtools": "^5.101.1",
"@tanstack/react-query-persist-client": "^5.101.1",
"hono": "^4.10.7",
"nanobar": "^0.4.2"
},
"devDependencies": {
"@octokit/core": "^7.0.6",
"@tanstack/react-virtual": "^3.13.12",
"@types/bun": "latest",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript/native-preview": "^7.0.0-dev.20251201.1",
"bun-plugin-tailwind": "latest",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"concurrently": "^10.0.1",
"diff": "^9.0.0",
"fake-indexeddb": "^6.2.5",
"geist": "^1.5.1",
"gitdiff-parser": "^0.3.1",
"lucide-react": "^1.16.0",
"prettier": "^3.7.3",
"radix-ui": "^1.6.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.6",
"refractor": "^5.0.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gemoji": "^8.0.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^6"
}
}