UNPKG

@figmarine/logger

Version:

Logger package for the Figmarine monorepo

55 lines 1.48 kB
{ "name": "@figmarine/logger", "version": "1.0.2", "license": "MIT", "type": "module", "description": "Logger package for the Figmarine monorepo", "repository": { "type": "git", "url": "https://github.com/Sidnioulz/figmarine", "directory": "packages/logger" }, "bugs": { "url": "https://github.com/Sidnioulz/figmarine/issues" }, "keywords": [ "figmarine", "log" ], "publishConfig": { "access": "public" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "devDependencies": { "@types/node": "^22.8.1", "@vitest/coverage-istanbul": "^2.1.3", "@vitest/coverage-v8": "^2.1.3", "lint-staged": "^15.2.10", "tsc-watch": "^6.2.0", "tsup": "^8.3.5", "typescript": "latest", "vitest": "^2.1.3", "@figmarine/config-eslint": "0.0.0", "@figmarine/config-prettier": "0.0.0", "@figmarine/config-tsup": "0.0.0", "@figmarine/config-typescript": "0.0.0", "@figmarine/config-vitest": "0.0.0" }, "scripts": { "build": "tsc && tsup --env.NODE_ENV production", "dev": "tsc-watch --onSuccess \"tsup --env.NODE_ENV production\"", "lint": "eslint .", "lint:files": "eslint --", "lint:fix": "eslint . --fix", "lint:staged": "lint-staged", "test": "vitest run", "test:changed": "vitest run --changed HEAD~1", "test:coverage": "vitest --coverage run", "test:dev": "vitest dev", "typecheck": "tsc --noEmit" } }