Files
editor/packages/viewer/package.json
T

62 lines
1.4 KiB
JSON

{
"name": "@pascal-app/viewer",
"version": "0.9.2",
"description": "3D viewer component for Pascal building editor",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc --build",
"dev": "tsgo --build --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@pascal-app/core": "^0.9.2",
"@react-three/drei": "^10",
"@react-three/fiber": "^9",
"react": "^18 || ^19",
"three": "^0.185"
},
"dependencies": {
"three-bvh-csg": "^0.0.18",
"three-mesh-bvh": "^0.9.8",
"zustand": "^5"
},
"devDependencies": {
"@pascal/typescript-config": "*",
"@types/node": "^22",
"@types/react": "^19.2.2",
"@types/three": "^0.184.0",
"typescript": "6.0.3"
},
"keywords": [
"3d",
"building",
"editor",
"viewer",
"architecture",
"webgpu",
"three.js",
"react-three-fiber"
],
"repository": {
"type": "git",
"url": "https://github.com/pascalorg/editor.git",
"directory": "packages/viewer"
},
"license": "MIT",
"homepage": "https://github.com/pascalorg/editor/tree/main/packages/viewer#readme",
"bugs": "https://github.com/pascalorg/editor/issues"
}