-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "bytely",
"version": "0.3.0",
"type": "module",
"description": "Easily parse binary data into JavaScript Objects",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"dev": "vite --port 8080",
"build": "tsc && vite build",
"build:types": "tsc -d --declarationDir dist --declarationMap --emitDeclarationOnly",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"files": [
"dist"
],
"homepage": "https://github.com/max-bronner/bytely",
"repository": {
"url": "https://github.com/max-bronner/bytely"
},
"bugs": {
"url": "https://github.com/max-bronner/bytely/issues"
},
"keywords": [
"binary",
"byte",
"parser",
"converter",
"struct"
],
"author": {
"name": "Max Bronner",
"email": "max2bronner@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.5.0",
"vitest": "^0.34.6"
}
}