-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.35 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
54
55
56
57
58
59
{
"name": "@evenstar/byteform",
"version": "1.0.1",
"description": "Library for encoding and decoding binary data.",
"keywords": [
"binary",
"encode",
"decode",
"parse",
"serialize",
"protocol"
],
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"coverage": "jest --coverage"
},
"engines": {
"node": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theevenstarspace/byteform.git"
},
"author": "The Evenstar",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/theevenstarspace/byteform/issues"
},
"homepage": "https://byteform.js.org",
"packageManager": "[email protected]",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@rollup/pluginutils": "^5.1.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.1",
"eslint": "^9.15.0",
"eslint-plugin-tsdoc": "^0.4.0",
"jest": "^29.7.0",
"rollup": "^4.27.3",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
}
}