logger/package.json

42 lines
1.1 KiB
JSON

{
"name": "@navy.gif/logger",
"version": "2.5.3",
"description": "Logging thing",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "./build/esm/index.d.ts",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"default": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
}
},
"files": [
"build/**/*"
],
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.26.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@navy.gif/discord-webhook": "^1.2.2",
"chalk": "^4.1.2",
"moment": "^2.29.4"
},
"scripts": {
"test": "node test/test.js",
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
"release": "yarn build && yarn publish"
}
}