-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 842 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 842 Bytes
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
{
"name": "network-protocol",
"version": "1.0.0",
"description": "Habbo Unity network protocol for browsers",
"main": "dist/bundle.js",
"scripts": {
"build": "browserify src/Client.js --standalone Client -o dist/bundle.js",
"watch": "watchify src/Client.js --standalone Client -d -o dist/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HabboEnhanced/network-protocol.git"
},
"author": "Burak <burak@burak.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HabboEnhanced/network-protocol/issues"
},
"homepage": "https://github.com/HabboEnhanced/network-protocol#readme",
"devDependencies": {
"axios": "^0.21.1",
"browserify": "^17.0.0",
"buffer-reverse": "^1.0.1",
"node-forge": "github:HabboEnhanced/forge",
"watchify": "^3.11.1"
}
}