-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "cp3-kaitai-zlib",
"version": "1.0.1",
"description": "Zlib processors for Kaitai Struct.",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./Inflate": "./dist/Inflate.js",
"./InflateGzip": "./dist/InflateGzip.js",
"./InflateRaw": "./dist/InflateRaw.js",
"./InflateZlib": "./dist/InflateZlib.js"
},
"files": [
"dist/*",
"types/*",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsc",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tschrock/cp3-kaitai-zlib.git"
},
"keywords": [
"kaitai",
"struct",
"zlib",
"pako",
"processor",
"gzip",
"deflate",
"inflate"
],
"author": "Tyler Schrock <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Tschrock/cp3-kaitai-zlib/issues"
},
"homepage": "https://github.com/Tschrock/cp3-kaitai-zlib#readme",
"dependencies": {
"pako": "^1.0.11"
},
"devDependencies": {
"@types/pako": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"typescript": "^4.6.4"
}
}