-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 2.31 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
{
"name": "@runejs/client",
"version": "0.0.0",
"description": "Work in progress TypeScript game client for RuneJS",
"main": "dist/main.js",
"scripts": {
"dev:electron": "NODE_ENV=development webpack --config webpack.electron.config.js --mode development && electron .",
"dev:react": "NODE_ENV=development webpack serve --config webpack.react.config.js --mode development",
"build:electron": "NODE_ENV=production webpack --config webpack.electron.config.js --mode production",
"build:react": "NODE_ENV=production webpack --config webpack.react.config.js --mode production",
"build": "tsc",
"watch": "tsc -w",
"start": "npm run build && electron --js-flags=\"--max_old_space_size=4096\" ./dist/process/main.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rune-js/client.git"
},
"keywords": [
"RuneScape",
"TypeScript",
"Game",
"Client"
],
"author": "Tynarus",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/rune-js/client/issues"
},
"homepage": "https://github.com/rune-js/client#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/node": "^14.14.11",
"@types/pngjs": "^3.4.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-loader": "^8.2.2",
"electron": "^11.0.4",
"html-webpack-plugin": "^4.5.0",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@runejs/core": "^1.0.0-beta.0",
"@runejs/filestore": "^0.1.0",
"electron-midi": "^0.1.3",
"jimp": "^0.16.1",
"midi-json-parser": "^8.0.17",
"midi-player": "6.0.12",
"node-properties-parser": "0.0.2",
"pngjs": "^6.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rxjs": "6.6.3",
"seek-bzip": "^2.0.0",
"source-map-support": "^0.5.19",
"zlib": "^1.0.5"
}
}