-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "@2003scape/rsc-client",
"version": "1.1.0",
"description": "runescape classic web client",
"main": "./src/mudclient.js",
"scripts": {
"build-dev": "browserify -t bulkify -t brfs index.js > dist/index.bundle.js",
"build": "browserify -t bulkify -p tinyify index.js > dist/index.bundle.min.js",
"start": "st -p 1337 -nc -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2003scape/rsc-client.git"
},
"keywords": [
"runescape",
"classic",
"rsc",
"client",
"mmorpg",
"game"
],
"author": "2003Scape Team",
"license": "AGPL-3.0+",
"bugs": {
"url": "https://github.com/2003scape/rsc-client/issues"
},
"homepage": "https://github.com/2003scape/rsc-client#readme",
"devDependencies": {
"@ledgerhq/compressjs": "^1.3.2",
"alawmulaw": "^6.0.0",
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"bulk-require": "^1.0.1",
"bulkify": "1.4.0",
"eslint": "^7.30.0",
"long": "^4.0.0",
"ndarray": "^1.0.19",
"pcm-player": "0.0.11",
"rand-token": "^1.0.1",
"sleep-promise": "^9.1.0",
"st": "^3.0.0",
"tga-js": "^1.1.1",
"tinyify": "^3.0.0"
},
"browserify": {
"transform": [
"bulkify",
"brfs"
]
}
}