-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.21 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.21 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
{
"name": "timeline-scene-builder",
"productName": "Timeline Scene Builder",
"version": "1.3.0",
"description": "Visual timeline editor for creating cutscenes and picture sequences",
"main": "main.js",
"scripts": {
"start": "node node_modules/electron/cli.js . --no-sandbox",
"dev": "node node_modules/electron/cli.js . --no-sandbox --dev",
"build": "node node_modules/electron-builder/out/cli/cli.js",
"build:win": "node node_modules/electron-builder/out/cli/cli.js --win",
"build:mac": "node node_modules/electron-builder/out/cli/cli.js --mac",
"test": "NODE_OPTIONS='--experimental-vm-modules' node node_modules/jest/bin/jest.js",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' node node_modules/jest/bin/jest.js --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' node node_modules/jest/bin/jest.js --coverage",
"lint": "node node_modules/eslint/bin/eslint.js .",
"lint:fix": "node node_modules/eslint/bin/eslint.js . --fix",
"format": "node node_modules/prettier/bin/prettier.cjs --write .",
"format:check": "node node_modules/prettier/bin/prettier.cjs --check .",
"prepare": "husky"
},
"keywords": [
"rpg-maker",
"rpg-maker-mz",
"timeline",
"scene-builder",
"cutscene",
"electron",
"gamedev",
"visual-editor"
],
"author": "W1nterstale",
"license": "MIT",
"homepage": "https://github.com/Wintersta7e/mz-scene-builder#readme",
"repository": {
"type": "git",
"url": "https://github.com/Wintersta7e/mz-scene-builder.git"
},
"bugs": {
"url": "https://github.com/Wintersta7e/mz-scene-builder/issues"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"electron": "^41.2.1",
"electron-builder": "^26.8.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3"
},
"lint-staged": {
"*.{js,mjs}": [
"node node_modules/eslint/bin/eslint.js --fix",
"node node_modules/prettier/bin/prettier.cjs --write"
],
"*.{json,css,html,md,yml,yaml}": [
"node node_modules/prettier/bin/prettier.cjs --write"
]
},
"build": {
"appId": "com.w1nterstale.timeline-scene-builder",
"productName": "Timeline Scene Builder",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"src/**/*",
"assets/**/*"
],
"win": {
"target": [
"nsis",
"portable"
],
"icon": "assets/icon.ico"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "assets/icon.icns",
"category": "public.app-category.developer-tools"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
},
"portable": {
"artifactName": "${productName}-${version}-win-portable.${ext}"
},
"fileAssociations": [
{
"ext": "mzscene",
"name": "Timeline Scene",
"description": "Timeline Scene Builder Project",
"role": "Editor"
}
]
}
}