wrappers/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2023-04-12 13:23:41 +02:00
{
"name": "@navy.gif/wrappers",
2023-11-29 12:43:51 +01:00
"version": "1.7.5",
2023-04-12 13:23:41 +02:00
"description": "Various wrapper classes I use in my projects",
"repository": "https://git.corgi.wtf/Navy.gif/wrappers.git",
"author": "Navy.gif",
"license": "MIT",
"private": false,
"type": "module",
2023-04-12 21:11:45 +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"
}
},
2023-04-12 13:23:41 +02:00
"files": [
2023-04-12 21:11:45 +02:00
"build/**/*"
2023-04-12 13:23:41 +02:00
],
"scripts": {
2023-11-11 16:11:47 +01:00
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js --common --module",
"build:cjs": "tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js --common",
"build:module": "tsc && node ./scripts/declareTypes.js --module",
2023-04-12 21:11:45 +02:00
"test": "yarn build && jest",
"release": "yarn build && yarn publish",
2023-04-12 13:23:41 +02:00
"lint": "eslint --fix"
},
"devDependencies": {
2023-11-29 12:43:51 +01:00
"@navy.gif/logger": "^2.5.1",
2023-04-12 13:23:41 +02:00
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"typescript": "^5.0.3"
},
"dependencies": {
"@types/amqplib": "^0.10.1",
"@types/mysql": "^2.15.21",
2023-04-12 13:23:41 +02:00
"amqp-connection-manager": "^4.1.12",
"amqplib": "^0.10.3",
"mongodb": "^5.7.0",
2023-04-12 13:23:41 +02:00
"mysql": "^2.18.1"
2023-11-11 16:11:47 +01:00
},
"peerDependencies": {
"prom-client": "^15.0.0"
},
"peerDependenciesMeta": {
"prom-client": {
"optional": true
}
2023-04-12 13:23:41 +02:00
}
}