-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.42 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.42 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "duke",
"version": "1.0.0",
"private": true,
"main": "dist/main.js",
"scripts": {
"dev": "concurrently \"npm run dev:react\" \"npm run dev:electron\"",
"dev:react": "next dev",
"dev:electron": "wait-on http://127.0.0.1:3000 && tsc electron/main.ts electron/preload.ts electron/tools/fs.ts electron/tools/lib/types.ts electron/tools/lib/utils.ts electron/tools/lib/scanner.ts electron/tools/lib/read.ts electron/tools/lib/analyze.ts electron/tools/searchWorker.ts --outDir dist --target esnext --module commonjs --esModuleInterop --skipLibCheck && electron . --dev",
"build": "next build && tsc electron/main.ts electron/preload.ts electron/tools/fs.ts electron/tools/lib/types.ts electron/tools/lib/utils.ts electron/tools/lib/read.ts electron/tools/lib/analyze.ts electron/tools/lib/project-detection.ts electron/tools/searchWorker.ts --outDir dist --target esnext --module commonjs --esModuleInterop --skipLibCheck",
"dist": "npm run build && electron-builder",
"start": "electron .",
"lint": "eslint .",
"prepare": "husky"
},
"build": {
"appId": "com.duke.app",
"productName": "Duke",
"asar": true,
"asarUnpack": [
"dist/tools/searchWorker.js",
"dist/tools/lib/**/*.js"
],
"compression": "maximum",
"files": [
"dist/**/*",
"out/**/*",
"package.json",
"!node_modules/**/*.md",
"!node_modules/**/*.txt",
"!node_modules/**/*.d.ts",
"!node_modules/**/*.map"
],
"directories": {
"output": "dist_app"
},
"mac": {
"target": {
"target": "dmg",
"arch": "arm64"
},
"category": "public.app-category.productivity",
"electronLanguages": [
"en"
]
},
"extraResources": [
".env",
{
"from": "electron/tools/lib/analyzers/python/scanner",
"to": "scanner"
}
]
},
"dependencies": {
"@hono/node-server": "^1.19.8",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@types/dagre": "^0.7.53",
"chokidar": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"dotenv": "^17.2.3",
"electron-serve": "^3.0.0",
"electron-store": "^8.2.0",
"framer-motion": "^12.29.2",
"get-port": "^7.1.0",
"glob": "^13.0.0",
"hono": "^4.11.4",
"lucide-react": "^0.563.0",
"mammoth": "^1.11.0",
"next": "16.1.6",
"pdf-parse": "^2.4.5",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-virtuoso": "^4.18.1",
"reactflow": "^11.11.4",
"recharts": "^3.7.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"trash": "^10.0.1",
"xlsx": "^0.18.5",
"zod": "^3.22.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": "eslint --fix"
},
"devDependencies": {
"@types/node": "^25.0.7",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.19",
"concurrently": "^9.2.1",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.4.31",
"tailwindcss": "^3.4.17",
"typescript": "5.9.3",
"wait-on": "^7.2.0"
}
}