Files
tools/packages/rx/package.json
Jacob Nguyen 177457d9a4 try again
2023-12-13 18:36:14 -06:00

51 lines
1.1 KiB
JSON

{
"name": "@sern/rx",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./djs": {
"import": "./dist/djs/index.mjs"
}
},
"version": "0.0.3-alpha",
"description": "rxjs operators and utils for discord bot projects",
"packageManager": "pnpm@7.24.3",
"scripts": {
"build": "tsup",
"tdd": "vitest --config ./vitest.config.ts",
"test": "vitest run --config ./vitest.config.ts"
},
"keywords": [],
"author": "jacoobes",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.15",
"discord.js": "^14.8.1",
"rxjs": "7.8.1",
"tsup": "^6.7.0",
"typescript": "5.0.4",
"vitest": "^0.28.4"
},
"peerDependencies": {
"discord.js": ">= 14.8.0"
},
"node": ">=18.0",
"type": "module",
"types": "./dist\\index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sern-handler/rx.git"
},
"bugs": {
"url": "https://github.com/sern-handler/rx/issues"
},
"homepage": "https://github.com/sern-handler/rx#readme"
}