{
	"name": "@lume/three-projected-material",
	"description": "A Three.js material that projects a texture onto an object",
	"version": "0.4.0",
	"type": "module",
	"main": "dist/ProjectedMaterial.js",
	"homepage": "https://github.com/lume/three-projected-material",
	"repository": "git@github.com:lume/three-projected-material.git",
	"license": "MIT",
	"files": [
		"dist/"
	],
	"scripts": {
		"start": "five-server . --open=./examples/",
		"build": "tsc",
		"clean": "rimraf dist examples/lib/three-projected-material",
		"test": "npm run prettier:check && npm run build && echo TODO three-projected-material tests",
		"prettier": "prettier . --write",
		"prettier:check": "prettier . --check",
		"deploy": "gh-pages -d examples",
		"release:patch": "npm version --no-workspaces patch -m 'v%s' && npm publish && git push --follow-tags",
		"release:minor": "npm version --no-workspaces minor -m 'v%s' && npm publish && git push --follow-tags",
		"release:major": "npm version --no-workspaces major -m 'v%s' && npm publish && git push --follow-tags",
		"preversion": "npm run build",
		"version": "npm run updateversion && npm run build && git add .",
		"updateversion": "echo export const version = \"'$npm_package_version'\" > src/version.ts"
	},
	"peerDependencies": {
		"three": ">=0.152.0"
	},
	"devDependencies": {
		"@types/three": ">=0.152.0",
		"cpr": "^3.0.1",
		"five-server": "^0.3.1",
		"gh-pages": "^3.1.0",
		"mkdirp": "^3.0.1",
		"prettier": "3.0.3",
		"rimraf": "^5.0.1",
		"serve": "^13.0.2",
		"stats.js": "^0.17.0",
		"three": ">=0.152.0",
		"typescript": "^5.0.0"
	}
}
