3d-scene-creator
Version:
A simple utility to create and manage 3D scenes
63 lines • 1.6 kB
JSON
{
"name": "3d-scene-creator",
"version": "1.0.1",
"devDependencies": {
"@types/three": "^0.184.0",
"typescript": "^6.0.0",
"vite": "^8.0.1",
"vite-plugin-dts": "^5.0.1"
},
"peerDependencies": {
"three": ">=0.145.0"
},
"main": "dist/main.js",
"module": "dist/main.js",
"types": "dist/src/main.d.ts",
"exports": {
".": {
"types": "./dist/src/main.d.ts",
"import": "./dist/main.js",
"require": "./dist/main.umd.js"
}
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"src"
],
"dependencies": {
"@tweenjs/tween.js": "^25.0.0",
"cannon-es": "^0.20.0"
},
"description": "A simple utility to create and manage 3D scenes",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidecarlier/3d-scene-creator.git"
},
"keywords": [
"three",
"threejs",
"typescript",
"webgl",
"3d",
"orbitcontrols"
],
"author": "Davide Carlier",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidecarlier/3d-scene-creator/issues"
},
"homepage": "https://3dscenecreator.netlify.app",
"scripts": {
"dev": "vite --config vite.website.config.js",
"build": "pnpm build:lib",
"build:lib": "tsc && vite build",
"build:website": "vite build --config vite.website.config.js && mkdir -p public/examples/360-beach && cp website/examples/360-beach/kris-guico-rsB-he-ye7w-unsplash.jpg public/examples/360-beach/",
"serve": "vite preview --config vite.website.config.js"
}
}