-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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": "kaitai-struct",
"version": "0.11.0-SNAPSHOT.2",
"description": "Kaitai Struct: runtime library for JavaScript",
"keywords": [
"binary",
"file",
"forenics",
"format",
"kaitai",
"parsing",
"reverse engineering",
"reversing",
"runtime",
"stream",
"struct",
"structure"
],
"homepage": "https://github.com/kaitai-io/kaitai_struct_javascript_runtime#readme",
"bugs": {
"url": "https://github.com/kaitai-io/kaitai_struct_javascript_runtime/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaitai-io/kaitai_struct_javascript_runtime.git"
},
"license": "Apache-2.0",
"author": "Kaitai team (https://github.com/orgs/kaitai-io/people) and Ilmari Heikkinen",
"main": "index.js",
"types": "index.d.ts",
"files": [
"KaitaiStream.js",
"KaitaiStream.d.ts",
"index.d.ts"
],
"scripts": {
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^16.11.11",
"rollup": "^2.60.2",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
}
}