-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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": "binspector",
"description": "A _truly_ declarative library for binary file and protocol definition written in typescript. Read binary files based on class definition and decorators directly from your webapp.",
"version": "0.1.1",
"main": "dist/binspector.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"module": "src/index.ts",
"scripts": {
"clean": "npx rimraf dist",
"build": "npm run clean && webpack --mode=production",
"test": "jest",
"lint": "eslint",
"doc": "typedoc --options typedoc.json --mermaidVersion latest"
},
"author": "thomperale",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/jest": "^29.5.14",
"eslint": "^9.14.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.11",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"directories": {
"doc": "docs",
"example": "example"
},
"homepage": "https://tperale.github.io/binspector/",
"repository": {
"type": "git",
"url": "git+https://github.com/tperale/binspector"
},
"keywords": [
"parser",
"binary",
"binfiles",
"declarative",
"decorator"
]
}