Initial Commit
This commit is contained in:
65
package.json
Normal file
65
package.json
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "@techniker-me/logger",
|
||||
"version": "0.0.15",
|
||||
"description": "A logger package for logging",
|
||||
"type": "module",
|
||||
"types": "./dist/types/index.d.ts",
|
||||
"exports": {
|
||||
"types": "./dist/types/index.d.ts",
|
||||
"import": "./dist/browser/index.js",
|
||||
"require": "./dist/node/index.js",
|
||||
"default": "./dist/node/index.js"
|
||||
},
|
||||
"private": false,
|
||||
"author": {
|
||||
"name": "Alexander Zinn",
|
||||
"git+url": "https://git.techniker.me/techniker-me/tools.git"
|
||||
},
|
||||
"publishConfig": {
|
||||
"registry": "https://registry-node.techniker.me"
|
||||
},
|
||||
"scripts": {
|
||||
"ci-install": "bun install",
|
||||
"ci-test": "bun test",
|
||||
"ci-build": "bash scripts/ci-build.sh",
|
||||
"ci-deploy:ga": "bash scripts/ci-deploy.sh --beta false",
|
||||
"ci-deploy:beta": "bash scripts/ci-deploy.sh --beta true",
|
||||
"format": "prettier ./ --write",
|
||||
"prelint": "bun run format",
|
||||
"lint": "eslint \"./src\"",
|
||||
"lint:fix": "eslint \"./src\" --fix",
|
||||
"test": "bun test",
|
||||
"clean": "rm -rf dist",
|
||||
"prebuild": "bun run clean",
|
||||
"build": "bash scripts/ci-build.sh",
|
||||
"build:node:debug": "bun build ./src/index.ts --target=node --sourcemap=none --format=esm --sourcemap=inline --outdir=dist/node",
|
||||
"build:browser:debug": "bun build ./src/index.ts --target=browser --sourcemap=none --format=esm --sourcemap=inline --outdir=dist/browser",
|
||||
"build:node": "bun build ./src/index.ts --target=node --sourcemap=none --format=cjs --splitting --minify --outdir=dist/node",
|
||||
"build:browser": "bun build ./src/index.ts --target=browser --sourcemap=none --format=esm --splitting --minify --outdir=dist/browser",
|
||||
"build:types": "tsc -p tsconfig.json",
|
||||
"build:prepare-package-json": "bash scripts/prepare-package-json.sh",
|
||||
"dev": "bun run build:types && bun --watch ./src/index.ts",
|
||||
"versionbump:minor": "bash scripts/version-bump.sh minor",
|
||||
"versionbump:major": "bash scripts/version-bump.sh major",
|
||||
"versionbump:patch": "bash scripts/version-bump.sh patch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "9.21.0",
|
||||
"@types/node": "22.14.1",
|
||||
"bun-types": "^1.2.4",
|
||||
"eslint": "9.21.0",
|
||||
"globals": "16.0.0",
|
||||
"prettier": "3.5.3",
|
||||
"tsx": "4.19.3",
|
||||
"typescript": "5.8.2",
|
||||
"typescript-eslint": "8.26.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@techniker-me/tools": "2025.0.16"
|
||||
},
|
||||
"files": [
|
||||
"package.json",
|
||||
"dist",
|
||||
"README.md"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user