-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.71 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
{
"name": "lantern-bloodborne-launcher",
"version": "0.0.7",
"productName": "LanternLauncher",
"description": "LanternLauncher for Bloodborne shadPS4 emu.",
"author": "par274",
"copyright": "Copyright (c) 2026 par274",
"license": "GPL-2.0",
"homepage": "https://github.com/par274/lantern-bloodborne-launcher",
"repository": {
"type": "git",
"url": "https://github.com/par274/lantern-bloodborne-launcher.git"
},
"main": ".build/dist/electron/main.js",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"dev:native": "node native/dev.ts",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"typecheck": "npm run check",
"build": "npm run check && vite build",
"start": "npm run build && electron .",
"dist:portable": "npm run build && electron-builder --config .build/dist/electron/config.cjs --dir",
"dist:ci": "npm run build && electron-builder --config .build/dist/electron/config.cjs",
"clean": "rimraf .svelte-kit .build"
},
"devDependencies": {
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.58.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tailwindcss/vite": "^4.2.4",
"@types/node": "^25.6.0",
"dotenv": "^17.4.2",
"electron": "^41.4.0",
"electron-builder": "^26.8.1",
"rimraf": "^6.1.3",
"svelte": "^5.55.5",
"svelte-check": "^4.4.7",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-electron": "^0.29.1"
}
}