-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "@tschrock/kaitai-struct",
"version": "1.0.0",
"description": "Kaitai Struct: runtime library for TypeScript",
"main": "index.js",
"types": "index.d.ts",
"files": [
"/index.js",
"/index.d.ts",
"/KaitaiStream.js",
"/KaitaiStream.d.ts"
],
"scripts": {
"build": "tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tschrock/kaitai_struct_typescript_runtime.git"
},
"keywords": [
"binary",
"file",
"forenics",
"format",
"kaitai",
"parsing",
"reverse engineering",
"reversing",
"runtime",
"stream",
"struct",
"structure",
"typescript"
],
"author": "Tyler Schrock <tschrock123@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tschrock/kaitai_struct_typescript_runtime/issues"
},
"homepage": "https://github.com/tschrock/kaitai_struct_typescript_runtime#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"typescript": "^4.6.3"
}
}