| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "name": "@threepipe/plugin-gltf-transform",
- "description": "Utility plugins for threepipe using gltf-transform to optimize/compress glTF files.",
- "version": "0.1.0",
- "devDependencies": {
- "@gltf-transform/core": "3.2.1",
- "@gltf-transform/extensions": "3.2.1"
- },
- "dependencies": {
- "threepipe": "file:./../../src/"
- },
- "clean-package": {
- "remove": [
- "clean-package",
- "scripts",
- "devDependencies",
- "//",
- "markdown-to-html"
- ],
- "replace": {
- "dependencies": {},
- "peerDependencies": {
- "threepipe": "^0.0.32"
- }
- }
- },
- "type": "module",
- "main": "dist/index.js",
- "module": "dist/index.mjs",
- "types": "dist/index.d.ts",
- "files": [
- "dist",
- "src"
- ],
- "scripts": {
- "new:pack": "npm run prepare && clean-package && npm pack && clean-package restore",
- "new:publish": "npm run prepare && clean-package && npm publish --access public && clean-package restore",
- "prepare": "npm run build && npm run docs",
- "build": "rimraf dist && vite build",
- "dev": "NODE_ENV=development vite build --watch",
- "docs": "rimraf docs && npx typedoc"
- },
- "author": "repalash <palash@shaders.app>",
- "license": "Apache-2.0",
- "keywords": [
- "three",
- "three.js",
- "threepipe",
- "vite",
- "plugin"
- ],
- "bugs": {
- "url": "https://github.com/repalash/threepipe/issues"
- },
- "homepage": "https://github.com/repalash/threepipe#readme",
- "repository": {
- "type": "git",
- "url": "git://github.com/repalash/threepipe.git",
- "directory": "plugins/gltf-transform"
- }
- }
|