logger/package.json

31 lines
653 B
JSON
Raw Normal View History

2022-11-05 16:31:54 +01:00
{
2022-11-06 16:21:10 +01:00
"name": "@navy.gif/logger",
2023-03-26 20:01:24 +02:00
"version": "1.2.6",
2022-11-05 16:31:54 +01:00
"description": "Logging thing",
2023-04-12 19:13:14 +02:00
"main": "build/index.js",
2022-11-05 16:31:54 +01:00
"author": "Navy.gif",
"license": "MIT",
2022-11-05 16:38:18 +01:00
"private": false,
2023-04-12 19:13:14 +02:00
"type": "module",
2022-11-06 16:21:33 +01:00
"files": [
"src"
],
2022-11-05 16:31:54 +01:00
"devDependencies": {
2023-04-12 19:13:14 +02:00
"@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"
2022-11-05 16:31:54 +01:00
},
"dependencies": {
"@navy.gif/discord-webhook": "^1.0.0",
2022-11-05 16:31:54 +01:00
"chalk": "^4.1.2",
"moment": "^2.29.4"
2022-11-06 16:21:10 +01:00
},
"scripts": {
2023-04-12 19:13:14 +02:00
"test": "node test/test.js",
"build": "tsc"
2022-11-05 16:31:54 +01:00
}
}