UNPKG

fqtree

Version:

a flexible quadtree for JavaScript/TypeScript

47 lines 1.33 kB
{ "name": "fqtree", "version": "0.0.2", "description": "a flexible quadtree for JavaScript/TypeScript", "module": "dist/index.js", "types": "dist/index.d.ts", "repository": { "type": "git", "url": "git+ssh://git@gitlab.com/evjonell/fqtree.git" }, "keywords": [ "quadtree", "spacial", "partition" ], "author": "Erika V. Jonell", "license": "MIT", "bugs": { "url": "https://gitlab.com/evjonell/fqtree/issues" }, "homepage": "https://gitlab.com/evjonell/fqtree#readme", "dependencies": { "evjkit": "^0.0.7", "lodash": "^4.17.21", "onsreo": "^1.0.6" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/lodash": "^4.14.202", "@typescript-eslint/eslint-plugin": "^6.20.0", "@typescript-eslint/parser": "^6.20.0", "esbuild": "^0.20.0", "eslint": "^8.56.0", "jest": "^29.7.0", "prettier": "^3.1.1", "ts-jest": "^29.1.2", "typescript": "^5.3.3" }, "scripts": { "build:clean": "rm -rf dist;mkdir dist", "build:source": "tsc -p tsconfig.build.json", "build": "npm run build:clean;npm run build:source", "check": "tsc --watch --noEmit --pretty -p tsconfig.dev.json", "check:all": "tsc --watch --noEmit --pretty -p tsconfig.json", "test": "jest --watchAll --workerThreads --maxWorkers=40%" } }