Files
afilmory/packages/webgl-viewer/package.json
Innei 51df233429 chore: update package dependencies and improve documentation
- Updated `vite` to the beta version across multiple applications for enhanced features and performance.
- Removed deprecated dependencies such as `@clack/prompts`, `consola`, and `opentype.js` from `devDependencies`.
- Added new storage provider documentation in `routes.json` and updated last modified dates for existing entries.
- Refactored route imports in `routes.ts` to streamline the structure and improve readability.
- Enhanced the Table of Contents (TOC) data structure for better organization and accessibility.

Signed-off-by: Innei <tukon479@gmail.com>
2025-12-05 15:59:18 +08:00

38 lines
774 B
JSON

{
"name": "@afilmory/webgl-viewer",
"type": "module",
"version": "0.2.0",
"packageManager": "pnpm@10.24.0",
"description": "",
"author": "Innei",
"license": "MIT",
"exports": {
".": "./src/index.ts"
},
"main": "./src/index.ts",
"scripts": {
"build": "vite build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"devDependencies": {
"@types/react": "19.2.7",
"nbump": "2.1.8",
"react": "19.2.1",
"tsdown": "0.17.0",
"unplugin-dts": "1.0.0-beta.6",
"vite": "8.0.0-beta.0"
},
"publishConfig": {
"access": "public",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
}
}
}