{
	"name": "three-demo",
	"version": "5.1.3",
	"description": "A demo framework for three.js.",
	"homepage": "https://github.com/vanruesc/three-demo",
	"main": "dist/three-demo.js",
	"module": "dist/three-demo.js",
	"types": "dist/types/index.d.ts",
	"exports": {
		".": "./dist/three-demo.js"
	},
	"type": "module",
	"sideEffects": false,
	"license": "Zlib",
	"keywords": [
		"demo",
		"framework",
		"three",
		"3d"
	],
	"author": {
		"name": "Raoul van Rüschen",
		"email": "vanruesc@outlook.de"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/vanruesc/three-demo.git"
	},
	"bugs": {
		"url": "https://github.com/vanruesc/three-demo/issues"
	},
	"files": [
		"dist"
	],
	"engines": {
		"node": ">= 0.14.0"
	},
	"scripts": {
		"build": "run-s build:*",
		"build:js": "node esbuild -m",
		"build:dts": "tsc -p tsconfig.d.json",
		"clean": "del-cli dist public",
		"copy": "cpy --cwd=demo/static --parents \"**/*\" \"../../public/demo\"",
		"deploy": "run-s test copy doc",
		"dev": "run-s clean copy && run-p start watch",
		"doc": "typedoc",
		"lint": "tsc --noemit & eslint --ext .ts --fix src demo/src",
		"prepublishOnly": "run-s test doc",
		"test": "run-s lint clean build",
		"start": "serve public",
		"watch": "run-p watch:*",
		"watch:tsc": "tsc --noemit --watch --preserveWatchOutput",
		"watch:eslint": "esw -w --ext .ts --color src demo/src",
		"watch:js": "node esbuild -w"
	},
	"eslintConfig": {
		"extends": "aether/typescript"
	},
	"peerDependencies": {
		"dat.gui": "0.x.x",
		"three": "0.x.x"
	},
	"devDependencies": {
		"@types/dat.gui": "0.x.x",
		"@types/three": "0.x.x",
		"@typescript-eslint/eslint-plugin": "5.x.x",
		"@typescript-eslint/parser": "5.x.x",
		"cpy-cli": "3.x.x",
		"dat.gui": "0.x.x",
		"del-cli": "4.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": "13.x.x",
		"three": "0.x.x",
		"tslib": "2.x.x",
		"typedoc": "0.x.x",
		"typescript": "4.x.x"
	}
}
