UNPKG

@evilkiwi/astar

Version:

Synchronous A* pathfinding for TypeScript

68 lines 1.71 kB
{ "type": "module", "name": "@evilkiwi/astar", "version": "4.0.0", "sideEffects": false, "description": "Synchronous A* pathfinding for TypeScript", "files": [ "dist", "COPYING" ], "main": "./dist/index.cjs", "module": "./dist/index.esm.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.esm.js", "require": "./dist/index.cjs", "default": "./dist/index.esm.js" } }, "license": "GPL-3.0-only", "author": { "name": "Evil Kiwi Limited", "url": "https://evil.kiwi", "email": "support@evil.kiwi" }, "homepage": "https://github.com/evilkiwi/astar", "bugs": { "url": "https://github.com/evilkiwi/astar/issues" }, "repository": { "type": "git", "url": "git+https://github.com/evilkiwi/astar.git" }, "keywords": [ "a", "star", "path", "finding", "typescript" ], "devDependencies": { "@biomejs/biome": "^2.1.1", "@rollup/plugin-commonjs": "^28.0.6", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.1.4", "@vitest/coverage-v8": "^3.2.4", "better-commits": "^1.17.1", "jest": "^30.0.4", "jest-mock-extended": "^4.0.0", "rollup": "^4.44.2", "rollup-plugin-dts": "^6.2.1", "tslib": "^2.8.1", "typescript": "^5.8.3", "vitest": "^3.2.4" }, "scripts": { "build": "rollup -c", "commit": "better-commits", "lint": "biome check --error-on-warnings", "test:coverage": "vitest run --coverage", "test:watch": "vitest watch", "test": "vitest run", "typecheck": "tsc --noEmit --incremental" } }