aframe-click-drag-component/package.json
Kumi 887a55f37c
feat: update dependencies to newer versions
Updated several dependencies to their newer versions to leverage recent
fixes and improvements, enhance security, and ensure compatibility with
modern environments. This includes updates to core utilities, stream
management tools, glob matching libraries, and more. Significant changes
include updates to `lodash`, `minimatch`, `source-map`, and `three`.
Ensuring these updates also involved minor adjustments for compatibility
with updated API surfaces and behavior.

These changes may improve overall performance, offer better features,
and close potential security gaps in previous versions.
2024-03-27 17:15:32 +01:00

50 lines
No EOL
1.2 KiB
JSON

{
"name": "aframe-click-drag-component",
"version": "3.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://github.com/jesstelford/aframe-click-drag-component.git"
},
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr"
],
"author": "Jess Telford <hi@jes.st>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jesstelford/aframe-click-drag-component/issues"
},
"homepage": "https://github.com/jesstelford/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"
]
}
}