-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
144 lines (144 loc) · 4.13 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "pokemon-studio",
"productName": "Pokémon Studio",
"description": "Pokémon Studio is a monster taming game editor which helps you to bring your ideas to life, in just a few clicks.",
"version": "2.4.1",
"main": "./.webpack/main",
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Pokémon Workshop",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PokemonWorkshop/PokemonStudio.git"
},
"engines": {
"node": ">=20.9.0",
"npm": ">=10.9.0"
},
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error",
"version": ">=20.9.0"
},
"packageManager": {
"name": "npm",
"onFail": "error",
"version": ">=10.9.0"
}
},
"scripts": {
"start": "run-script-os",
"start:win32": "chcp 65001 && electron-forge start",
"start:darwin:linux": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-webpack": "^7.4.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@svgr/webpack": "^8.1.0",
"@types/lodash.groupby": "^4.6.9",
"@types/lodash.uniq": "^4.5.9",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"@types/react-notifications-component": "^3.1.4",
"@types/react-test-renderer": "^18.3.0",
"@types/react-virtualized": "^9.21.30",
"@types/styled-components": "^5.1.34",
"@types/yauzl": "^2.10.3",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"app-builder-lib": "^25.0.5",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"electron": "^32.1.1",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"node-loader": "^2.0.0",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"url-loader": "^4.1.1"
},
"dependencies": {
"@electron-forge/publisher-github": "^7.4.0",
"@hello-pangea/dnd": "^17.0.0",
"@pkmn/sim": "^0.9.15",
"@xyflow/react": "^12.3.2",
"csv-parse": "^5.5.6",
"csv-stringify": "^6.5.1",
"electron-is-dev": "^3.0.1",
"electron-log": "^5.2.0",
"electron-updater": "^6.3.4",
"extract-zip": "^2.0.1",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-is": "^18.3.1",
"react-notifications-component": "^4.0.1",
"react-router-dom": "^6.26.2",
"react-select": "^5.8.0",
"react-textarea-autosize": "^8.5.3",
"react-tracked": "^2.0.1",
"react-virtualized": "^9.22.5",
"run-script-os": "^1.1.6",
"styled-components": "^5.3.11",
"ts-marshal": "^0.0.11",
"ts-tiled-converter": "^0.0.9",
"zod": "^3.23.8"
},
"build": {
"appId": "com.pokemon.studio",
"fileAssociations": {
"ext": "studio",
"name": "Studio",
"description": "Pokémon Studio Project file"
},
"directories": {
"output": "out/make"
},
"extraResources": [
"./assets/**"
],
"extraFiles": [
"psdk-binaries",
"app-update.yml",
"placeholder.svg"
],
"win": {
"target": [
"nsis"
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": true,
"shortcutName": "Pokémon Studio",
"artifactName": "Pokemon-Studio-Setup-${version}.${ext}",
"selectPerMachineByDefault": false
}
},
"volta": {
"node": "20.9.0"
}
}