{
	"name": "sparse-octree",
	"version": "7.1.8",
	"description": "A sparse octree data structure.",
	"homepage": "https://github.com/vanruesc/sparse-octree",
	"license": "Zlib",
	"type": "module",
	"sideEffects": false,
	"main": "./dist/index.js",
	"module": "./dist/index.js",
	"types": "./dist/types/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/types/index.d.ts",
			"default": "./dist/index.js"
		}
	},
	"keywords": [
		"partition",
		"hierarchy",
		"subdivision",
		"raycasting",
		"3d",
		"spatial",
		"voxel",
		"points",
		"frustum",
		"culling",
		"pointer"
	],
	"author": {
		"name": "Raoul van Rüschen",
		"email": "vanruesc@outlook.de"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/vanruesc/sparse-octree.git"
	},
	"bugs": {
		"url": "https://github.com/vanruesc/sparse-octree/issues"
	},
	"files": [
		"dist"
	],
	"engines": {
		"node": ">= 0.14.0"
	},
	"ava": {
		"failFast": true,
		"files": [
			"test/**/*.js"
		]
	},
	"eslintConfig": {
		"extends": "aether/typescript"
	},
	"scripts": {
		"ava": "ava",
		"build": "run-s build:js:min build:dts",
		"build:js": "node esbuild",
		"build:js:min": "node esbuild -m",
		"build:dts": "tsc -p tsconfig.d.json",
		"postbuild": "copyfiles -u 2 demo/static/**/* public/demo",
		"clean": "del-cli dist public",
		"doc": "typedoc --plugin typedoc-plugin-mdn-links",
		"lint": "run-s lint:*",
		"lint:js": "eslint --ext .ts --fix src demo/src",
		"lint:tsc": "tsc --noemit",
		"prepublishOnly": "run-s test doc",
		"start": "serve public",
		"test": "run-s lint clean build ava",
		"prewatch": "run-s clean build:js build:dts postbuild",
		"watch": "run-p watch:* start",
		"watch:tsc": "tsc --noemit --watch --preserveWatchOutput",
		"watch:eslint": "esw -w --ext .ts --color src demo/src",
		"watch:js": "node esbuild -w"
	},
	"peerDependencies": {
		"three": "0.x.x"
	},
	"devDependencies": {
		"@tweakpane/core": "1.x.x",
		"@types/node": "20.x.x",
		"@types/three": "0.x.x",
		"@typescript-eslint/eslint-plugin": "5.x.x",
		"@typescript-eslint/parser": "5.x.x",
		"ava": "5.x.x",
		"copyfiles": "2.x.x",
		"del-cli": "5.x.x",
		"esbuild": "0.x.x",
		"eslint": "8.x.x",
		"eslint-config-aether": "1.x.x",
		"eslint-watch": "8.x.x",
		"npm-run-all": "4.x.x",
		"serve": "14.x.x",
		"spatial-controls": "6.x.x",
		"three": "0.x.x",
		"tslib": "2.x.x",
		"tweakpane": "3.x.x",
		"typedoc": "0.x.x",
		"typedoc-plugin-mdn-links": "3.x.x",
		"typescript": "5.x.x"
	}
}
