-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "liblce",
"version": "1.2.16",
"description": "A TS library for Minecraft Legacy Console Edition files + more",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --project ./tsconfig.build.json",
"dev": "tsc --watch",
"test": "cd testing && npx tsx runTests.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DexrnZacAttack/libLCE.git"
},
"keywords": [
"javascript",
"library",
"typescript",
"minecraft",
"minecraft-bedrock-edition",
"minecraft-console",
"legacy-console-edition",
"minecraft-legacy-console-edition",
"minecraft-lce",
"grf",
"nbt",
"savegame",
"mcs",
"msscmp",
"pck",
"vitarle",
"lzx",
"xmemcompress",
"loc",
"arc",
"mcregion"
],
"author": "Dexrn ZacAttack <dexrn@hotmail.com> (https://dexrnzacattack.github.io/)",
"license": "MIT",
"dependencies": {
"@types/pako": "^2.0.3",
"binaryio.js": "^1.2.4",
"pako": "^2.1.0",
"png-chunks-extract": "^1.0.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "^20.12.8",
"@types/png-chunks-extract": "^1.0.2",
"rimraf": "^6.0.1"
}
}