{
	"name": "spatial-controls",
	"version": "6.3.0",
	"description": "Configurable 3D movement controls.",
	"homepage": "https://github.com/vanruesc/spatial-controls",
	"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": [
		"movement",
		"translation",
		"rotation",
		"object",
		"camera",
		"orbit",
		"controls",
		"keybindings",
		"3d"
	],
	"author": {
		"name": "Raoul van Rüschen",
		"email": "vanruesc@outlook.de"
	},
	"repository": {
		"url": "git+https://github.com/vanruesc/spatial-controls.git"
	},
	"bugs": {
		"url": "https://github.com/vanruesc/spatial-controls/issues"
	},
	"files": [
		"dist"
	],
	"ava": {
		"failFast": true,
		"files": [
			"test/**/*.js"
		]
	},
	"pnpm": {
		"onlyBuiltDependencies": [
			"esbuild"
		]
	},
	"scripts": {
		"ava": "ava",
		"build": "run-p build:js:min build:dts",
		"build:js": "node esbuild",
		"build:js:min": "node esbuild -m",
		"build:dts": "tsc -p tsconfig.d.json",
		"postbuild": "cpy \"demo/static/**/*\" public/demo",
		"clean": "del-cli dist public",
		"doc": "typedoc --plugin typedoc-plugin-mdn-links",
		"lint": "run-p lint:*",
		"lint:js": "eslint --fix src demo/src",
		"lint:tsc": "tsc --noEmit",
		"prepublishOnly": "npm test",
		"start": "serve public",
		"test": "run-s lint clean build ava doc",
		"prewatch": "run-s clean build:js build:dts postbuild",
		"watch": "run-p watch:* start",
		"watch:tsc": "tsc --noEmit --watch --preserveWatchOutput",
		"watch:js": "node esbuild -w"
	},
	"peerDependencies": {
		"three": "0.x.x"
	},
	"devDependencies": {
		"@tweakpane/core": "2.x.x",
		"@types/node": "25.x.x",
		"@types/three": "0.x.x",
		"ava": "6.x.x",
		"cpy-cli": "7.x.x",
		"del-cli": "7.x.x",
		"esbuild": "0.27.x",
		"eslint": "9.x.x",
		"eslint-config-aether": "2.x.x",
		"npm-run-all": "4.x.x",
		"serve": "14.x.x",
		"three": "0.x.x",
		"tslib": "2.x.x",
		"tweakpane": "4.x.x",
		"typedoc": "0.x.x",
		"typedoc-plugin-mdn-links": "5.x.x",
		"typescript": "5.9.x"
	}
}
