62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "@spz-loader/core",
|
|
"description": ".spz Gaussian Splatting file loader",
|
|
"author": {
|
|
"name": "drumath2237",
|
|
"url": "https://github.com/drumath2237"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"spz",
|
|
"wasm",
|
|
"webassembly",
|
|
"emscripten",
|
|
"gaussian splatting",
|
|
"3dgs"
|
|
],
|
|
"homepage": "https://github.com/drumath2237/spz-loader",
|
|
"repository": {
|
|
"url": "https://github.com/drumath2237/spz-loader",
|
|
"directory": "/packages/core",
|
|
"type": "git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/drumath2237/spz-loader/issues"
|
|
},
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=16",
|
|
"pnpm": ">=8"
|
|
},
|
|
"version": "0.3.0",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.umd.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"types": "./index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.umd.cjs"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@types/node": "^22.9.0",
|
|
"typescript": "~5.6.3",
|
|
"vite": "^5.4.9",
|
|
"vite-plugin-dts": "^4.3.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"build:docker": "docker run --rm -v $(pwd)/lib/spz-wasm/:/src emscripten/emsdk ./build.sh",
|
|
"check": "biome check ./lib ./src",
|
|
"check:write": "biome check --write ./lib ./src"
|
|
}
|
|
} |