@threlte/rapier
Version:
Components and hooks to use the Rapier physics engine in Threlte
79 lines • 2.17 kB
JSON
{
"name": "@threlte/rapier",
"version": "3.2.0",
"author": "Grischa Erbe <hello@legrisch.com> (https://legrisch.com)",
"license": "MIT",
"description": "Components and hooks to use the Rapier physics engine in Threlte",
"devDependencies": {
"@dimforge/rapier3d-compat": "^0.16.2",
"@eslint/js": "^9.26.0",
"@sveltejs/adapter-auto": "^6.1.0",
"@sveltejs/kit": "^2.37.0",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^6.1.4",
"@types/node": "^20.19.4",
"@types/three": "^0.175.0",
"@yushijinhun/three-minifier-rollup": "^0.4.0",
"eslint": "^9.26.0",
"eslint-plugin-svelte": "^3.5.1",
"globals": "^16.1.0",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"publint": "^0.2.7",
"rimraf": "^6.0.1",
"svelte": "5.26.2",
"svelte-check": "^4.3.1",
"svelte2tsx": "^0.7.6",
"three": "^0.175.0",
"tslib": "^2.6.2",
"type-fest": "^4.15.0",
"typescript": "5.9.2",
"typescript-eslint": "^8.32.0",
"vite": "^7.1.4",
"@threlte/core": "8.3.0"
},
"peerDependencies": {
"@dimforge/rapier3d-compat": ">=0.16",
"svelte": ">=5",
"three": ">=0.152"
},
"type": "module",
"keywords": [
"threlte",
"rapier",
"svelte",
"three",
"three.js",
"3d",
"physics"
],
"homepage": "https://threlte.xyz",
"repository": {
"type": "git",
"url": "https://github.com/threlte/threlte.git",
"directory": "packages/rapier"
},
"bugs": {
"url": "https://github.com/threlte/threlte/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "vite dev",
"package": "svelte-kit sync && svelte-package && node ./scripts/cleanupPackage.js && publint",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"cleanup": "rimraf node_modules .svelte-kit dist"
}
}