This repository has been archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.9 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
{
"name": "rpgjs-electron",
"productName": "RPGJS",
"version": "1.0.0",
"main": "app/background.js",
"author": "BeetEOS team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/BTS-CM/RPGJS-Electron",
"repository": "github:BTS-CM/RPGJS-Electron",
"browser": {
"app": "app/app.js"
},
"build": {
"appId": "rpgjs-electron",
"productName": "RPGJS",
"artifactName": "rpgjs.${ext}",
"asar": false,
"npmRebuild": false,
"buildDependenciesFromSource": false,
"includeSubNodeModules": true,
"files": [
".env",
".gitignore",
"bun.lockb",
"index.html",
"LICENSE",
"netlify.toml",
"package.json",
"rpg.toml",
"tsconfig.json",
"vercel.json"
],
"extraResources": [
{ "from": "./app", "to": "app/app/" },
{ "from": "./build", "to": "app/build/" },
{ "from": "./main", "to": "app/main/" },
{ "from": "./resources", "to": "app/resources/" },
{ "from": "./node_modules", "to": "app/node_modules/" },
{ "from": "./src", "to": "app/src/" },
{ "from": "./package.json", "to": "app/package.json" }
],
"directories": {
"buildResources": "resources",
"output": "dist"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"win": {
"target": "nsis"
}
},
"scripts": {
"start": "node build/start.js",
"compile": "webpack --config=build/webpack.main.config.js --config=build/webpack.renderer.config.js --config=build/webpack.preload.config.js --env=production",
"build": "bun run compile && electron-builder --publish never",
"release": "bun run compile && electron-builder --publish never",
"dist:windows-latest": "bun run compile && electron-builder -w --publish never",
"space": "",
"downloadRPG": "rm -rf rpg && git clone https://github.com/BTS-CM/demo-rpg-js.git rpg && cd rpg && cp -R main ..",
"gitClone": "git clone https://github.com/BTS-CM/demo-rpg-js.git rpg",
"mvRPG": "cd rpg && cp -R main ..",
"rpgDev": "rpgjs dev",
"rpg": "cross-env RPG_TYPE=rpg PORT=3333 npm run rpgDev"
},
"dependencies": {
"@exodus/bytebuffer": "https://github.com/BTS-CM/bytebuffer.js.git#393541bd29f988a2af6a7785b1ee4978881ed6bb",
"@nanostores/persistent": "^0.10.1",
"@nanostores/query": "^0.2.10",
"@nanostores/vue": "^0.10.0",
"@rpgjs/client": "4.3.0",
"@rpgjs/default-gui": "https://github.com/BTS-CM/rpgjs-gui.git#3591b4396991fd5d90eb23e6d7e59bb76b78786f",
"@rpgjs/gamepad": "^4.3.0",
"@rpgjs/mobile-gui": "^4.3.0",
"@rpgjs/server": "^4.3.0",
"@rpgjs/standalone": "4.3.0",
"@rpgjs/types": "4.0.5",
"@shoelace-style/shoelace": "^2.15.1",
"assert": "^2.1.0",
"bigi": "^1.4.2",
"bs58": "^5.0.0",
"create-hash": "^1.2.0",
"create-hmac": "^1.1.7",
"deep-equal": "^2.2.3",
"ecurve": "^1.0.6",
"electron-devtools-installer": "^3.2.0",
"eosjs": "^22.1.0",
"isomorphic-ws": "^5.0.0",
"long": "^5.2.3",
"safe-buffer": "^5.2.1",
"socket.io-client": "4.7.4",
"terminate": "^2.8.0",
"uuid": "^9.0.1",
"vue": "^3.4.27",
"vue-router": "^4.4.0",
"@types/bun": "latest",
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@soda/friendly-errors-webpack-plugin": "^1.8.1",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"file-loader": "^6.2.0",
"vue-loader": "^17.4.2",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0",
"cross-env": "^7.0.3",
"typescript": "5.3.3",
"@rpgjs/compiler": "4.3.0"
},
"devDependencies": {
"electron-builder": "^24.13.3",
"electron": "^31.1.0"
}
}