aframe-click-drag-component/package.json
Kumi 8fdf7fa138
feat: support aframe 1.5.0 and update docs
This release brings the project up to date with aframe 1.5.0, ensuring
compatibility and leveraging the latest features of aframe. Alongside
this, the README.md has been updated to provide clearer usage
instructions, enhancing the user experience. Additionally, a significant
cleanup was done by removing numerous dev dependencies, which will
necessitate replacements for future development. These changes aim to
streamline the development process while maintaining the functionality
and usability of the aframe-click-drag-component.

- Support for aframe 1.5.0 ensures compatibility with the latest
version, bringing new features and improvements to users.
- Updated README.md with clearer instructions improves the ease of use
and approachability for new users.
- Removed dev dependencies to tidy up the project structure,
highlighting a shift towards a more streamlined and focused development
process.
2024-03-28 07:18:47 +01:00

50 lines
1.2 KiB
JSON

{
"name": "@kumitterer/aframe-click-drag-component",
"version": "4.0.1",
"description": "Click & Drag component for A-Frame.",
"main": "lib/index.js",
"scripts": {
"build-lib": "mkdir -p lib && babel src/index.js -o lib/index.js",
"prepublishOnly": "npm run build-lib"
},
"repository": {
"type": "git",
"url": "git+https://git.private.coffee/kumi/aframe-click-drag-component/"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Kumi <aframe-click-drag-component@kumi.email>",
"license": "MIT",
"bugs": {
"url": "https://git.private.coffee/kumi/aframe-click-drag-component/issues"
},
"homepage": "https://git.private.coffee/kumi/aframe-click-drag-component#readme",
"peerDependencies": {
"aframe": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0"
},
"dependencies": {
"aframe-extras": "^7.4.0",
"deep-equal": "^1.1.2"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-object-rest-spread"
]
}
}