wrappers/package.json
2023-08-16 03:20:58 +03:00

46 lines
1.2 KiB
JSON

{
"name": "@navy.gif/wrappers",
"version": "1.6.1",
"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",
"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/**/*"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json && node ./scripts/declareTypes.js",
"test": "yarn build && jest",
"release": "yarn build && yarn publish",
"lint": "eslint --fix"
},
"devDependencies": {
"@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",
"amqp-connection-manager": "^4.1.12",
"amqplib": "^0.10.3",
"mongodb": "^5.7.0",
"mysql": "^2.18.1"
}
}