bufferStuff/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

2023-04-28 16:47:02 +01:00
{
"name": "bufferstuff",
2024-01-19 10:38:56 +00:00
"version": "1.5.1",
2023-04-28 16:47:02 +01:00
"description": "A set of utility classes for reading and writing binary data in NodeJS and the browser",
2023-05-12 13:56:42 +01:00
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
2023-04-28 16:47:02 +01:00
"scripts": {
"updateCheck": "check-outdated",
2023-10-24 12:04:32 +01:00
"_clean": "tsc --build --clean",
"build": "npm-run-all build:*",
"build:smash": "ts-node ./tooling/fileSmasher.ts",
"build:build": "tsc --build",
"build:cleanup": "ts-node ./tooling/cleanup.ts",
2023-10-24 12:04:32 +01:00
"buildweb": "npm-run-all buildweb:*",
"buildweb:smash": "ts-node ./tooling/fileSmasher.ts forweb",
"buildweb:build": "tsc --build",
"buildweb:cleanup": "ts-node ./tooling/cleanup.ts"
2023-04-28 16:47:02 +01:00
},
"repository": {
"type": "git",
2024-01-19 10:37:13 +00:00
"url": "https://git.eusv.net/tgpholly/bufferStuff.git"
2023-04-28 16:47:02 +01:00
},
"keywords": [],
2023-05-12 13:56:42 +01:00
"author": "tgpholly",
2023-04-28 16:47:02 +01:00
"license": "MIT",
"bugs": {
2024-01-01 22:30:57 +00:00
"url": "https://git.eusv.net/tgpholly/bufferStuff/issues"
2023-04-28 16:47:02 +01:00
},
2024-01-01 22:30:57 +00:00
"homepage": "https://git.eusv.net/tgpholly/bufferStuff#readme",
2023-04-28 16:47:02 +01:00
"devDependencies": {
"check-outdated": "^2.12.0",
2023-10-24 12:04:32 +01:00
"npm-run-all": "^4.1.5",
2024-01-19 10:38:56 +00:00
"terser": "^5.27.0",
2024-01-01 22:22:12 +00:00
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
2023-04-28 16:47:02 +01:00
}
2023-05-15 09:50:18 +01:00
}