algojs-dsa
Version:
High-performance data structures (Deque, PriorityQueue) for DSA practice with optimal time complexity
52 lines (51 loc) • 1.1 kB
JSON
{
"name": "algojs-dsa",
"version": "1.0.6",
"description": "High-performance data structures (Deque, PriorityQueue) for DSA practice with optimal time complexity",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"deque",
"priority-queue",
"heap",
"queue",
"stack",
"data-structures",
"dsa",
"algorithms",
"typescript",
"circular-buffer"
],
"author": "Pawan Kumar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/carefree-ladka/arraydeque"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}