-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 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
{
"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.6",
"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.9.3",
"bun-plugin-dts": "^0.2.4",
"@types/bun": "latest",
"@types/node": "latest",
"type-doc": "^0.1.41",
"typedoc-material-theme": "^1.4.1",
"typedoc-plugin-mdn-links": "^3.3.8"
}
}