@maur025/core-common
Version:
utility library to declare common util class and functions.
61 lines • 1.46 kB
JSON
{
"name": "@maur025/core-common",
"version": "1.0.1",
"author": "maur025 <mmoyapalli@gmail.com>",
"description": "utility library to declare common util class and functions.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Maur025/app-core-monorepo.git",
"directory": "packages/core-common"
},
"keywords": [
"utility",
"utils",
"common",
"functions",
"class",
"variety"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@turbo/gen": "^2.5.0",
"@types/node": "^22.14.0",
"eslint": "^9.24.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"@repo/eslint-config": "0.0.0",
"@repo/typescript-config": "0.0.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"build": "tsup src --dts --format esm,cjs --minify --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1"
}
}