forked from nkzw-tech/codiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "codiff",
"version": "1.4.6",
"description": "A fast local diff viewer.",
"license": "MIT",
"author": {
"name": "Christoph Nakazawa",
"email": "christoph.pojer@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/cpojer/codiff.git"
},
"bin": {
"codiff": "./bin/codiff.js"
},
"files": [
"bin",
"claude",
"config",
"codex",
"core",
"dist",
"electron",
"opencode",
"pi",
"shared"
],
"type": "module",
"main": "./electron/main.cjs",
"scripts": {
"codiff": "node ./bin/codiff.js",
"dev": "vp dev --host 127.0.0.1",
"dev:app": "ELECTRON_RENDERER_URL=http://127.0.0.1:5173 node ./bin/codiff.js",
"electron": "electron .",
"forge:make": "electron-forge make",
"forge:package": "electron-forge package",
"link:global": "vp build && pnpm link --global",
"make": "vp build && electron-forge make",
"make:ci": "vp build && electron-forge make && electron-forge package --platform=linux --arch=x64 && electron-forge make --platform=win32",
"make:mac": "vp build && electron-forge make --platform=darwin --arch=arm64",
"package:app": "vp build && electron-forge package",
"prepack": "vp build",
"prepare": "vp config",
"test": "vp test"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.1"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.79.4",
"@electron-forge/cli": "^7.11.2",
"@electron-forge/maker-deb": "^7.11.2",
"@electron-forge/maker-rpm": "^7.11.2",
"@electron-forge/maker-squirrel": "^7.11.2",
"@electron-forge/maker-zip": "^7.11.2",
"@nkzw/eslint-plugin": "^2.0.0",
"@nkzw/oxlint-config": "^1.2.1",
"@rolldown/plugin-babel": "^0.2.3",
"@swc/core": "^1.15.41",
"@tailwindcss/vite": "^4.3.1",
"@types/node": "^25.9.3",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260615.1",
"@vitejs/plugin-react": "^6.0.2",
"babel-plugin-react-compiler": "^1.0.0",
"electron": "^42.4.0",
"eslint-plugin-no-only-tests": "^3.4.0",
"eslint-plugin-perfectionist": "^5.9.1",
"eslint-plugin-react-hooks": "^7.1.1",
"jsdom": "^29.1.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=23.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.0.6",
"build": {
"appId": "dev.nkzw-tech.codiff",
"copyright": "Copyright © 2026-current Nakazawa Tech",
"productName": "Codiff"
}
}