Utils/package.json

31 lines
730 B
JSON

{
"name": "@hibas123/utils",
"version": "3.0.0",
"description": "Different Utilities, that are not worth own packages",
"type": "module",
"main": "esm/index.js",
"types": "esm/index.d.ts",
"module": "esm/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"watch-ts": "tsc -w",
"postpublish": "denreg publish"
},
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"repository": {
"url": "https://git.stamm.me/OpenServer/Utils.git",
"type": "git"
},
"devDependencies": {
"typescript": "^4.0.5"
},
"files": [
"src/",
"esm/",
"tsconfig.json",
"readme.md"
],
"private": false
}