UNPKG

@evoke-ui/zsort3d

Version:

TypeScript z-plane rendering engine with 3D depth simulation using Canvas 2D and mouse-based navigation

76 lines 1.84 kB
{ "name": "@evoke-ui/zsort3d", "version": "0.2.0", "description": "TypeScript z-plane rendering engine with 3D depth simulation using Canvas 2D and mouse-based navigation", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "build": "npm run clean && npm run build:cjs && npm run build:esm && node scripts/build-esm.js", "build:cjs": "tsc -p tsconfig.json", "build:esm": "tsc -p tsconfig.esm.json", "dev": "tsc --watch", "demo": "vite serve --port 3333 --config demo/vite.config.js", "demo:build": "vite build --config demo/vite.config.js", "clean": "rimraf dist", "typecheck": "tsc --noEmit", "lint": "eslint src --ext .ts", "prepublishOnly": "npm run build && npm run typecheck && npm run lint" }, "keywords": [ "3d", "rendering", "typescript", "canvas", "animation", "depth-sorting", "z-index", "perspective", "mouse-interaction", "touch-interaction", "mobile-support", "html5-canvas", "hammerjs" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "" }, "homepage": "", "bugs": { "url": "" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" }, "dependencies": { "hammerjs": "^2.0.8" }, "devDependencies": { "typescript": "^5.0.0", "vite": "^5.0.0", "rimraf": "^5.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "@types/hammerjs": "^2.0.45", "eslint": "^8.0.0" }, "files": [ "dist/**/*", "README.md", "CHANGELOG.md" ], "sideEffects": false }