-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "kaitai-struct",
"version": "0.12.0-SNAPSHOT.4",
"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",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"files": [
"KaitaiStream.js",
"KaitaiStream.d.ts",
"index.d.ts"
],
"scripts": {
"build": "rollup -c",
"prepack": "npm run build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.12.0",
"rollup": "^4.59.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}