Utils/package.json

31 lines
730 B
JSON
Raw Normal View History

2019-03-08 00:39:43 +00:00
{
"name": "@hibas123/utils",
2023-11-22 21:23:28 +00:00
"version": "3.0.0",
"description": "Different Utilities, that are not worth own packages",
2023-11-22 21:23:28 +00:00
"type": "module",
"main": "esm/index.js",
"types": "esm/index.d.ts",
2020-08-26 09:54:51 +00:00
"module": "esm/index.js",
"scripts": {
2020-08-26 08:58:27 +00:00
"prepublishOnly": "npm run build",
2023-11-22 21:23:28 +00:00
"build": "tsc",
2020-10-14 23:48:52 +00:00
"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/",
2020-08-26 09:54:51 +00:00
"esm/",
"tsconfig.json",
"readme.md"
],
"private": false
2023-11-22 21:23:28 +00:00
}