-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 KB
/
package.json
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
{
"name": "game-of-life",
"version": "0.2.0",
"description": "Conway's Game of Life",
"author": "Naexy",
"repository": {
"type": "git",
"url": "github:Nanagalaxy/Game-Of-Life"
},
"scripts": {
"dev:vite": "vite",
"build:vite": "tsc && vite build",
"preview:vite": "vite preview",
"dev:tauri": "tauri dev",
"build:tauri": "tauri build",
"prebuild:tauri": "node ./preBuildTauri.cjs",
"postbuild:tauri": "node ./postBuildTauri.cjs",
"build": "npm-run-all prebuild:tauri build:tauri postbuild:tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.5.6",
"lit": "^3.1.3"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.14",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"engines": {
"node": "^20.11.0"
},
"private": true,
"type": "module",
"packageManager": "[email protected]+sha256.19c17528f9ca20bd442e4ca42f00f1b9808a9cb419383cd04ba32ef19322aba7"
}