-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "binaryio.js",
"version": "1.2.4",
"description": "BinaryIO for Node and Web environments, allows for reading/writing data like a DataView but with built in position tracking.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --project ./tsconfig.build.json",
"dev": "tsc --watch",
"test": "cd testing && npx tsx writeTest.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DexrnZacAttack/BinaryIO.git"
},
"keywords": [
"DataView",
"BinaryReader",
"BinaryWriter",
"IO",
"data",
"reading",
"writing",
"position",
"endianness"
],
"author": "Dexrn ZacAttack <[email protected]> (https://dexrnzacattack.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/DexrnZacAttack/BinaryIO/issues"
},
"homepage": "https://github.com/DexrnZacAttack/BinaryIO#readme",
"devDependencies": {
"@types/node": "^22.5.4",
"rimraf": "^6.0.1"
}
}