-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.22 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
{
"name": "foundry-local-app",
"version": "0.0.5",
"description": "Electron shell for exposing the Foundry Local SDK.",
"main": "dist/main.js",
"type": "module",
"scripts": {
"postinstall": "electron-rebuild -f -w naudiodon2 -w segfault-handler",
"assets:icons": "node scripts/generate-icons.mjs",
"build": "tsc && vite build",
"build:main": "tsc",
"build:renderer": "vite build",
"dev:renderer": "vite",
"start": "npm run build && electron .",
"dist:win:unpacked": "npm run assets:icons && npm run build && electron-builder --config electron-builder.config.mjs --dir --win --x64 --publish never",
"dist:win:portable": "npm run assets:icons && npm run build && electron-builder --config electron-builder.config.mjs --win portable --x64 --publish never",
"dist:win:installer": "npm run assets:icons && npm run build && electron-builder --config electron-builder.config.mjs --win nsis --x64 --publish never",
"dist:win:release": "npm run assets:icons && npm run build && electron-builder --config electron-builder.config.mjs --win portable nsis --x64 --publish never"
},
"keywords": [
"electron",
"typescript",
"foundry"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^22.15.21",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^6.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron": "^35.1.5",
"electron-builder": "^26.0.12",
"lucide-react": "^1.14.0",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.4",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.3",
"vite": "^8.0.11"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"foundry-local-sdk": "^1.1.0",
"foundry-local-sdk-winml": "^1.1.0",
"naudiodon2": "^2.5.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.15.0",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1"
}
}