-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.32 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "binary-parser-tool",
"version": "1.1.0",
"description": "Utility for generating parsers suitable for Chirpstack v3 and Chirpstack v4, and not only, using binary-parser",
"keywords": [
"binary",
"parser",
"decode",
"unpack",
"struct",
"buffer",
"bit",
"chirpstack",
"lora",
"iot"
],
"homepage": "https://github.com/Lezvix/binary-parser-tool#readme",
"bugs": {
"url": "https://github.com/Lezvix/binary-parser-tool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lezvix/binary-parser-tool.git"
},
"license": "MIT",
"author": "Lezvix",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "tsc",
"test": "vitest run"
},
"peerDependencies": {
"binary-parser": ">=2.0.0"
},
"devDependencies": {
"@types/node": "^25.3.0",
"binary-parser": "^2.3.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@swc/core": "^1.15.11"
}
}