@yaruno/priority-queue
Version:
Priority queue implementation in TypeScript
66 lines • 1.48 kB
JSON
{
"name": "@yaruno/priority-queue",
"version": "0.0.6",
"description": "Priority queue implementation in TypeScript",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yaruno/priority-queue.git"
},
"homepage": "https://github.com/yaruno/priority-queue#readme",
"bugs": {
"url": "https://github.com/yaruno/priority-queue/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"priority-queue",
"queue",
"data-structure",
"typescript",
"javascript",
"doubly-linked-list",
"fifo",
"sorted",
"task-scheduling",
"job-queue"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.7.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"dependencies": {}
}