-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (38 loc) · 1.06 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
{
"name": "bufferstuff",
"version": "1.9.2",
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"clean": "tsc --build --clean",
"build": "npm-run-all build:*",
"build:rm": "rm -f combined.ts",
"build:rm2": "rm -rf ./lib/*",
"build:smash": "tsx ./tooling/fileSmasher.ts",
"build:build": "tsc --build",
"build:cleanup": "tsx ./tooling/cleanup.ts",
"buildweb": "npm-run-all buildweb:*",
"buildweb:shared": "npm-run-all build:*",
"buildweb:fix": "tsx ./tooling/webFix.ts"
},
"repository": {
"type": "git",
"url": "https://git.eusv.net/tgpholly/bufferStuff.git"
},
"keywords": [],
"author": "tgpholly",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://git.eusv.net/tgpholly/bufferStuff/issues"
},
"homepage": "https://git.eusv.net/tgpholly/bufferStuff#readme",
"devDependencies": {
"@types/node": "^25.2.1",
"npm-run-all": "^4.1.5",
"terser": "^5.46.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}