logger/package.json

41 lines
996 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-04-12 19:13:50 +02:00
"version": "2.0.0",
2022-11-05 16:31:54 +01:00
"description": "Logging thing",
"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",
2023-04-12 20:34:40 +02:00
"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"
}
},
2022-11-06 16:21:33 +01:00
"files": [
2023-04-12 20:34:40 +02:00
"build/**/*"
2022-11-06 16:21:33 +01:00
],
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",
2023-04-12 20:34:40 +02:00
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js"
2022-11-05 16:31:54 +01:00
}
}