{
	"name": "vue3-touch-events",
	"version": "5.0.15",
	"description": "Simple touch events support for vue.js 3",
	"type": "module",
	"main": "dist/index.js",
	"module": "dist/index.js",
	"types": "dist/index.d.ts",
	"files": [
		"dist"
	],
	"scripts": {
		"build": "bun build ./src/index.ts --outdir ./dist && bunx tsc",
		"dev": "bun build ./src/index.ts --outdir ./dist --watch & bunx tsc --watch",
		"test": "bun test"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/robinrodricks/vue3-touch-events.git"
	},
	"keywords": [
		"vue",
		"touch",
		"tap",
		"swipe",
		"longtap"
	],
	"author": "Robin Rodricks",
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/robinrodricks/vue3-touch-events/issues"
	},
	"homepage": "https://github.com/robinrodricks/vue3-touch-events#readme",
	"devDependencies": {
		"bun-types": "latest",
		"typescript": "^5.7.3"
	},
	"peerDependencies": {
		"vue": "^3.0.0"
	}
}