-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.45 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
112
113
114
115
{
"name": "Petmate",
"version": "0.6.3",
"description": "Petmate",
"main": "./out/main/index.js",
"author": "Mate Gamer",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"docs": "npm run docs:generate && npm run docs:serve",
"docs:generate": "typedoc",
"docs:serve": "cd docs-generated && python -m http.server 8889",
"docs:build": "npm run docs:generate",
"setup:local-ai": "powershell -ExecutionPolicy Bypass -File scripts/setup-local-ai.ps1",
"test:local-ai": "node scripts/test-local-ai.mjs",
"test:model-download": "node scripts/test-model-download.mjs",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run setup:local-ai -- -Backend All && npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"axios": "^1.10.0",
"electron-store": "^8.1.0",
"get-windows": "^9.2.0",
"greenworks": "github:greenheartgames/greenworks",
"gsap": "^3.13.0",
"howler": "^2.2.4",
"lodash": "^4.17.21",
"openai": "^5.9.0",
"pcm-player": "^0.0.18",
"sass": "^1.89.2",
"three": "^0.178.0",
"uuid": "^11.1.0",
"vue-router": "^4.5.1",
"winston": "^3.17.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/node": "^22.16.5",
"@types/three": "^0.179.0",
"@vitejs/plugin-vue": "^6.0.1",
"animate.css": "^4.1.1",
"electron": "^37.2.6",
"electron-builder": "^25.1.8",
"electron-rebuild": "^3.2.9",
"electron-vite": "^4.0.0",
"eslint": "^9.31.0",
"eslint-plugin-vue": "^10.3.0",
"naive-ui": "^2.42.0",
"prettier": "^3.6.2",
"typedoc": "^0.27.0",
"typescript": "^5.8.3",
"unplugin-auto-import": "^19.3.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^7.0.5",
"vite-plugin-glsl": "^1.5.1",
"vue": "^3.5.17",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^3.0.3"
},
"build": {
"appId": "com.mategamer.Petmate",
"productName": "Petmate",
"files": [
"out/**/*",
"resources/data/**/*",
"resources/icon.png",
"resources/icon.ico",
"package.json"
],
"extraResources": [
{
"from": "resources/html",
"to": "html",
"filter": [
"**/*"
]
},
{
"from": "resources/local-ai",
"to": "local-ai",
"filter": [
"runtime/llama/**/llama-server.exe",
"runtime/llama/**/*.dll"
]
}
],
"win": {
"icon": "resources/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-${version}-win-${arch}.${ext}",
"requestedExecutionLevel": "asInvoker"
}
}
}