-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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
{
"name": "lioncore",
"version": "2.0.0",
"description": "Offline-first modular POS system — React + Electron + IndexedDB",
"private": true,
"main": "electron/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "npm run build && electron-builder",
"dist": "npm run build && electron-builder",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@tailwindcss/vite": "^4.2.4",
"cors": "^2.8.6",
"dexie": "^4.4.2",
"express": "^5.2.1",
"qrcode": "^1.5.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"ws": "^8.20.1"
},
"devDependencies": {
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"concurrently": "^9.1.2",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"postcss": "^8.5.10",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^4.1.7",
"wait-on": "^8.0.2"
},
"build": {
"appId": "com.lioncore.pos",
"productName": "LionCore",
"directories": {
"output": "release"
},
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"win": {
"target": [
"portable"
],
"icon": "public/icon.png",
"artifactName": "LionCore-v${version}.exe"
}
}
}