-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 889 Bytes
/
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
{
"name": "@webpejs/network",
"version": "0.0.1",
"description": "Minecraft: Bedrock Edition network protocol implementation in Javascript",
"author": {
"name": "William Gao"
},
"license": "ISC",
"readme": "README.md",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist/**",
"README.md"
],
"scripts": {
"build": "tsc --inlineSources --sourceMap true --declaration true --outDir ./dist",
"dev": "webpack",
"dist": "webpack --env=prod",
"pserve": "cd public/; python -m SimpleHTTPServer 8000"
},
"devDependencies": {
"ts-loader": "^5.3.3",
"typescript": "^3.5.3",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"buffer": "^5.2.1",
"events": "^3.0.0",
"long": "github:dcodeIO/long.js",
"nbt": "^0.8.1",
"pako": "^1.0.10",
"uuid-parse": "^1.1.0"
}
}