bufferStuff/package.json

34 lines
918 B
JSON
Raw Normal View History

2023-04-28 16:47:02 +01:00
{
"name": "bufferstuff",
2023-06-22 11:33:13 +01:00
"version": "1.3.0",
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",
"build": "npm-run-all build:*",
"build:smash": "ts-node ./tooling/fileSmasher.ts",
"build:build": "tsc --build",
"build:cleanup": "ts-node ./tooling/cleanup.ts",
2023-04-28 16:47:02 +01:00
"_clean": "tsc --build --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgpholly/bufferStuff.git"
},
"keywords": [],
2023-05-12 13:56:42 +01:00
"author": "tgpholly",
2023-04-28 16:47:02 +01:00
"license": "MIT",
"bugs": {
"url": "https://github.com/tgpholly/bufferStuff/issues"
},
"homepage": "https://github.com/tgpholly/bufferStuff#readme",
"devDependencies": {
"check-outdated": "^2.11.0",
2023-07-28 10:25:20 +01:00
"ts-loader": "^9.4.4",
2023-04-28 16:47:02 +01:00
"ts-node": "^10.9.1",
2023-07-28 10:25:20 +01:00
"typescript": "^5.1.6",
"npm-run-all": "^4.1.5"
2023-04-28 16:47:02 +01:00
}
2023-05-15 09:50:18 +01:00
}