@spatialwalk/avatarkit
Version:
SPAvatar SDK - 3D Gaussian Splatting Avatar Rendering SDK
58 lines • 1.34 kB
JSON
{
"name": "@spatialwalk/avatarkit",
"type": "module",
"version": "1.0.0-beta.9",
"description": "SPAvatar SDK - 3D Gaussian Splatting Avatar Rendering SDK",
"author": "SPAvatar Team",
"license": "MIT",
"keywords": [
"avatar",
"3d",
"gaussian-splatting",
"webgl",
"webgpu",
"wasm"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"README.md",
"CHANGELOG.md",
"dist"
],
"peerDependencies": {
"@webgpu/types": "*"
},
"dependencies": {
"@bufbuild/protobuf": "^2.10.0",
"@guiiai/logg": "^1.2.4",
"nanoid": "^5.1.6"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@webgpu/types": "^0.1.65",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^4.5.4"
},
"scripts": {
"build": "SDK_BUILD=true vite build --mode library",
"dev": "vite build --mode library --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "cd tests && pnpm test",
"test:watch": "cd tests && pnpm run test:watch",
"test:e2e": "cd tests && pnpm run test:e2e"
}
}