-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.53 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
{
"name": "trident-git",
"version": "0.17.0",
"private": false,
"description": "A modern, web-based Git client.",
"repository": {
"type": "git",
"url": "https://github.com/m0o0scar/trident"
},
"bin": {
"trident-git": "bin/trident-git.mjs"
},
"files": [
"bin",
".next/BUILD_ID",
".next/server",
".next/static",
".next/*.json",
".next/*.js",
"public",
"next.config.mjs",
"README.md"
],
"scripts": {
"dev": "npx gfport 3100 -- next dev --webpack -p {PORT}",
"build": "next build --webpack",
"prepack": "rm -rf .next && npm run build",
"start": "next start -p 3100",
"lint": "eslint",
"cli": "node ./bin/trident-git.mjs",
"pack:preview": "npm pack --dry-run"
},
"keywords": [
"git",
"client",
"nextjs"
],
"license": "MIT",
"dependencies": {
"@alexbruf/react-diff-viewer": "^3.1.5",
"@tanstack/react-query": "^5.90.20",
"clsx": "^2.1.1",
"daisyui": "^5.5.18",
"keytar": "^7.9.0",
"next": "16.1.6",
"next-themes": "^0.4.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-syntax-highlighter": "^16.1.0",
"simple-git": "^3.30.0",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"gfport": "^1.0.1",
"tailwindcss": "^4",
"typescript": "^5"
}
}