-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.99 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
{
"name": "loot-survivor-2",
"private": true,
"version": "0.0.0",
"type": "module",
"main": "electron-dist/main.js",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"serve": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && NODE_ENV=development electron .\"",
"electron:build": "tsc -p electron/tsconfig.json && vite build && electron-builder",
"electron:preview": "tsc -p electron/tsconfig.json && vite build && electron ."
},
"build": {
"appId": "io.lootsurvivor.desktop",
"productName": "Loot Survivor 2",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron-dist/**/*"
],
"win": {
"target": [
{
"target": "dir",
"arch": [
"x64"
]
}
]
},
"extraMetadata": {
"type": "commonjs"
}
},
"dependencies": {
"@cartridge/connector": "^0.10.1",
"@cartridge/controller": "^0.10.1",
"@cloudflare/stream-react": "^1.9.3",
"@dojoengine/core": "^1.7.6",
"@dojoengine/sdk": "^1.7.6",
"@dojoengine/utils": "^1.7.6",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.2.5",
"@metamask/sdk": "^0.32.1",
"@mui/icons-material": "^7.0.2",
"@mui/lab": "7.0.0-beta.11",
"@mui/material": "^7.0.2",
"@scure/starknet": "^1.1.0",
"@solana/web3.js": "^1.98.0",
"@starknet-io/get-starknet-core": "^4.0.7",
"@starknet-io/types-js": "^0.8.4",
"@starknet-react/chains": "5.0.1",
"@starknet-react/core": "^5.0.1",
"@types/uuid": "^10.0.0",
"@vercel/analytics": "^1.5.0",
"framer-motion": "^12.7.4",
"graphql-request": "^7.1.2",
"immer": "^10.1.1",
"lottie-react": "^2.4.1",
"metagame-sdk": "0.1.22",
"notistack": "^3.0.2",
"open": "^10.1.0",
"posthog-js": "^1.260.2",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-lazy-load-image-component": "^1.6.3",
"react-router-dom": "6.22.1",
"recharts": "^3.1.0",
"starknet": "8.5.2",
"starknetkit": "^2.6.1",
"uuid": "^10.0.0",
"vite-plugin-mkcert": "^1.17.8",
"vite-plugin-wasm": "^3.4.1"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-lazy-load-image-component": "^1.6.4",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^34.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.24.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^5.4.18",
"vite-plugin-top-level-await": "^1.5.0",
"wait-on": "^8.0.3",
"zustand": "^4.5.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild",
"@swc/core"
]
}
}