-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.46 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.46 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
116
117
118
119
120
121
122
123
{
"name": "pace",
"version": "1.0.0",
"description": "Editor and engine for extremely simple point-and-click adventure games.",
"main": "out/main/index.js",
"homepage": "./",
"scripts": {
"dev": "electron-vite dev",
"start": "npm run dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"electron": "npm run build && electron out/main/index.js",
"test": "react-scripts test",
"lint": "eslint src --ext .ts,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write ./**/*.{ts,tsx,js,jsx,json,css,md}",
"format:check": "prettier --check ./**/*.{ts,tsx,js,jsx,json,css,md}",
"dist": "npm run build && electron-builder && node postbuild.js",
"dist-win": "npm run build && electron-builder --win && node postbuild.js",
"dist-mac": "npm run build && electron-builder --mac && node postbuild.js",
"dist-linux": "npm run build && electron-builder --linux && node postbuild.js",
"dist-dir": "npm run build && electron-builder --dir && node postbuild.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"cwebp-bin": "^8.0.0",
"express": "^5.1.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.3",
"jszip": "^3.10.1",
"multer": "^2.0.2",
"prettier": "^3.6.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/cors": "^2.8.19",
"@types/electron": "^1.6.12",
"@types/express": "^4.17.23",
"@types/multer": "^2.0.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^5.0.2",
"electron": "^38.1.0",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.20",
"lucide-react": "^0.543.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-scripts": "^5.0.1",
"typescript": "^4.9.5",
"vite": "^7.1.5"
},
"build": {
"appId": "com.pace.editor",
"productName": "pace",
"artifactName": "${name}_v${version}_${os}_${arch}.${ext}",
"directories": {
"output": "dist"
},
"extends": null,
"files": [
"out/**/*",
"public/favicon.ico",
"src/engine/**/*",
"src/styles/**/*",
"src/assets/fonts/**/*",
"node_modules/**/*"
],
"asarUnpack": [
"node_modules/ffmpeg-static/**/*",
"node_modules/cwebp-bin/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"dmg",
"zip"
],
"icon": "public/favicon.ico"
},
"win": {
"artifactName": "${name}_v${version}_windows_${arch}.${ext}",
"target": [
"nsis",
"zip"
],
"icon": "public/favicon.ico"
},
"linux": {
"target": [
"AppImage",
"zip"
],
"icon": "public/favicon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}