@theforce/react
Version:
React library for TheForce hand tracking
50 lines (49 loc) • 1.19 kB
JSON
{
"name": "@theforce/react",
"version": "2.0.0",
"publishConfig": {
"access": "public"
},
"description": "React library for TheForce hand tracking",
"keywords": [
"theforce",
"hand-tracking",
"mediapipe",
"react",
"gesture-control",
"virtual-mouse"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --external react",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts --external react",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "jest"
},
"dependencies": {
"@theforce/core": "*"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"eslint": "^8.45.0",
"eslint-config-custom": "*",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"react": "^18.2.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}