|
| 1 | +{ |
| 2 | + "name": "@zhycorporg/pino-logger", |
| 3 | + "description": "Plugin for @sapphire/framework to have pino logger", |
| 4 | + "author": "Zhycorp <[email protected]>", |
| 5 | + "version": "1.0.0", |
| 6 | + "main": "dist/index.js", |
| 7 | + "module": "dist/index.mjs", |
| 8 | + "exports": { |
| 9 | + ".": { |
| 10 | + "import": "./dist/index.mjs", |
| 11 | + "require": "./dist/index.js" |
| 12 | + }, |
| 13 | + "./register": { |
| 14 | + "import": "./dist/register.mjs", |
| 15 | + "require": "./dist/register.js", |
| 16 | + "types": "./dist/register.d.ts" |
| 17 | + } |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "dist/**/*.js*", |
| 21 | + "dist/**/*.mjs*", |
| 22 | + "dist/**/*.d*" |
| 23 | + ], |
| 24 | + "license": "AGPL-3.0", |
| 25 | + "homepage": "https://github.com/zhycorp/sapphire-plugins/tree/main/packages/pino-logger", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "git+https://github.com/zhycorp/sapphire-plugins.git", |
| 29 | + "directory": "packages/command-context" |
| 30 | + }, |
| 31 | + "bugs": { |
| 32 | + "url": "https://github.com/zhycorp/sapphire-plugins/issues" |
| 33 | + }, |
| 34 | + "readme": "https://github.com/zhycorp/sapphire-plugins/blob/main/README.md", |
| 35 | + "engines": { |
| 36 | + "node": ">=16.6.0", |
| 37 | + "npm": ">=7.0.0" |
| 38 | + }, |
| 39 | + "eslintConfig": { |
| 40 | + "extends": "@hazmi35/eslint-config/typescript", |
| 41 | + "ignorePatterns": [ |
| 42 | + "dist/*", |
| 43 | + "jest.config.ts", |
| 44 | + "rollup.bundle.ts" |
| 45 | + ], |
| 46 | + "parserOptions": { |
| 47 | + "project": "./tsconfig.eslint.json" |
| 48 | + } |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "build": "rimraf dist && tsc -b src && rollup -c rollup.bundle.ts && npm run esm:default", |
| 52 | + "esm:default": "gen-esm-wrapper dist/index.js dist/index.mjs", |
| 53 | + "lint": "eslint src tests --ext ts", |
| 54 | + "lint:fix": "eslint src tests --fix --ext ts", |
| 55 | + "format": "prettier --write {src,tests}/**/*.ts", |
| 56 | + "prepareForRelease": "npm run build && npm run format && npm run lint && npm run lint:fix", |
| 57 | + "test": "jest", |
| 58 | + "release": "npm publish --access public" |
| 59 | + }, |
| 60 | + "devDependencies": { |
| 61 | + "gen-esm-wrapper": "^1.1.3", |
| 62 | + "typescript": "4.6.4" |
| 63 | + }, |
| 64 | + "dependencies": { |
| 65 | + "pino": "^7.11.0" |
| 66 | + } |
| 67 | +} |
0 commit comments