mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@opentui/three",
|
|
"version": "0.4.0",
|
|
"description": "Three.js WebGPU renderer for OpenTUI",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/anomalyco/opentui",
|
|
"directory": "packages/three"
|
|
},
|
|
"module": "src/index.ts",
|
|
"main": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bun scripts/build.ts",
|
|
"publish": "bun scripts/publish.ts"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./src/index.ts"
|
|
},
|
|
"./runtime-modules": {
|
|
"types": "./src/runtime-modules.ts",
|
|
"import": "./src/runtime-modules.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "workspace:*",
|
|
"jimp": "1.6.1",
|
|
"three": "0.177.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@dimforge/rapier2d-simd-compat": "^0.17.3",
|
|
"bun-webgpu": "0.1.7",
|
|
"planck": "^1.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "^24.0.0",
|
|
"@types/three": "0.177.0",
|
|
"commander": "^13.1.0",
|
|
"typescript": "^5"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.3.0"
|
|
}
|
|
}
|