-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "@pocketnode/binarystream",
"description": "a package designed to facilitate the reading and writing of binary data.",
"module": "./dist/BinaryStream.js",
"types": "./dist/BinaryStream.d.ts",
"version": "1.1.5",
"type": "module",
"keywords": [
"binary",
"stream",
"buffer",
"data",
"read",
"write",
"endian",
"web",
"node"
],
"scripts": {
"build": "bun run build.ts",
"docs": "typedoc --plugin typedoc-plugin-mdn-links --plugin typedoc-material-theme --out docs --name BinaryStream --readme README.md --themeColor '#1B1D68' ./dist/BinaryStream.d.ts"
},
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/pocketnode/binarystream.git"
},
"devDependencies": {
"typescript": "^5.0.0",
"bun-plugin-dts": "^0.2.3",
"bun-types": "latest",
"type-doc": "^0.1.41",
"typedoc-material-theme": "^1.0.2",
"typedoc-plugin-mdn-links": "^3.1.28"
}
}