logger/package.json
2023-04-12 20:13:50 +03:00

31 lines
653 B
JSON

{
"name": "@navy.gif/logger",
"version": "2.0.0",
"description": "Logging thing",
"main": "build/index.js",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"type": "module",
"files": [
"src"
],
"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.0.0",
"chalk": "^4.1.2",
"moment": "^2.29.4"
},
"scripts": {
"test": "node test/test.js",
"build": "tsc"
}
}