-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 937 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
37
38
39
40
41
42
43
44
{
"name": "@lol-archiver/lol-wad-extract",
"version": "3.0.0",
"description": "Extract specified files from League of Legends WAD file",
"author": "DanoR",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/lol-archiver/lol-wad-extract.git"
},
"private": false,
"type": "module",
"typesSource": [
"node"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"main": "./index.js",
"files": [
"index.js",
"types/**"
],
"typings": "./types/index.d.ts",
"scripts": {
"declare": "tsc",
"postdeclare": "copy /Y bases.d.ts types"
},
"dependencies": {
"@nuogz/biffer": "^2.7.1",
"node-gzip": "^1.1.2",
"node-zstandard": "^1.2.4",
"xxhashjs": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin-js": "^2.10.1",
"@types/node": "^20.17.6",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"typescript": "^5.6.3"
}
}