forked from burntcustard/tiny-yurts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
{
"name": "tiny-yurts",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "vite build",
"electron": "electron .",
"electron-dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
"build-electron": "npm run build && electron-builder",
"dist": "npm run build && electron-builder --publish=never",
"lint": "eslint 'src/*.js'",
"lint:fix": "eslint 'src/*.js' --fix",
"deploy": "git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/burntcustard/tiny-yurts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/burntcustard/tiny-yurts/issues"
},
"homepage": "https://github.com/burntcustard/tiny-yurts#readme",
"dependencies": {
"kontra": "^9.0.0",
"rollup-plugin-kontra": "^1.0.1"
},
"devDependencies": {
"advzip-bin": "^2.0.0",
"concurrently": "^8.2.2",
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.28.0",
"html-minifier": "^4.0.0",
"jszip": "^3.10.1",
"roadroller": "^2.1.0",
"terser": "^5.19.2",
"vite": "^4.4.9",
"wait-on": "^7.0.1"
},
"build": {
"appId": "com.yourcompany.tinyyurts",
"productName": "TinyYurts",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"mac": {
"category": "public.app-category.games"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}