-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 1.77 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
67
68
69
70
71
72
{
"name": "unreal.js",
"version": "1.3.5",
"description": "A pak reader for games like VALORANT & Fortnite written in Node.JS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"start": "tsc && node dist/index.js",
"test": "tsc && node dist/test.js",
"restart": "node dist/index.js"
},
"repository": {
"url": "https://github.com/Sprayxe/unreal.js.git",
"type": "git"
},
"keywords": [
"nodejs",
"ue4",
"fortnite",
"paks",
"valorant",
"pakreader",
"unreal engine",
"javascript",
"typescript"
],
"author": "Sprayxe",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sprayxe/unreal.js/issues"
},
"homepage": "https://github.com/Sprayxe/unreal.js#readme",
"devDependencies": {
"@types/adm-zip": "^0.4.34",
"@types/aes-js": "^3.1.1",
"@types/bezier-js": "^0.0.8",
"@types/ffi-napi": "^2.4.3",
"@types/lodash": "^4.14.170",
"@types/long": "^4.0.1",
"@types/node": "^14.14.35",
"@types/os-locale": "^4.0.2",
"@types/ref-napi": "^1.4.1",
"@types/sprintf-js": "^1.1.2",
"@types/stream-buffers": "^3.0.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"dependencies": {
"@discordjs/collection": "^0.1.6",
"adm-zip": "^0.5.5",
"aes-js": "^3.1.2",
"axios": "^0.21.1",
"bezier-js": "^4.1.1",
"bitset": "^5.1.1",
"ffi-napi": "^4.0.2",
"lodash": "^4.17.21",
"long": "^4.0.0",
"lzma-native": "^8.0.1",
"optional-require": "^1.0.3",
"os-locale": "^5.0.0",
"ref-napi": "^3.0.2",
"reflect-metadata": "^0.1.13",
"sprintf-js": "^1.1.2",
"stream-buffers": "^3.0.2"
},
"optionalDependencies": {
"canvas": "^2.8.0",
"dxt-js": "^0.0.3"
}
}