UNPKG

@ssgoi/core

Version:

Core animation engine for SSGOI - Native app-like page transitions with spring physics

95 lines 2.51 kB
{ "name": "@ssgoi/core", "version": "2.5.5", "description": "Core animation engine for SSGOI - Native app-like page transitions with spring physics", "private": false, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs", "default": "./dist/index.js" }, "./transitions": { "types": "./dist/transitions/index.d.ts", "import": "./dist/transitions/index.js", "require": "./dist/transitions/index.cjs", "default": "./dist/transitions/index.js" }, "./view-transitions": { "types": "./dist/view-transitions/index.d.ts", "import": "./dist/view-transitions/index.js", "require": "./dist/view-transitions/index.cjs", "default": "./dist/view-transitions/index.js" }, "./types": { "types": "./dist/types.d.ts", "import": "./dist/types.js", "require": "./dist/types.cjs", "default": "./dist/types.js" }, "./presets": { "types": "./dist/presets/index.d.ts", "import": "./dist/presets/index.js", "require": "./dist/presets/index.cjs", "default": "./dist/presets/index.js" } }, "files": [ "dist", "!dist/**/*.test.*", "!dist/**/*.spec.*" ], "keywords": [ "page-transition", "animation", "typescript", "vanilla", "spring-physics", "ssgoi" ], "author": "MeurSyphus <tmdeoans@snu.ac.kr>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/meursyphus/ssgoi.git", "directory": "packages/core" }, "homepage": "https://ssgoi.dev", "bugs": { "url": "https://github.com/meursyphus/ssgoi/issues" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18.0.0" }, "devDependencies": { "@eslint/js": "^9.34.0", "@types/node": "^22.10.6", "eslint": "^9.34.0", "globals": "^16.3.0", "prettier": "^3.6.2", "typescript": "^5.7.3", "typescript-eslint": "^8.42.0", "vite": "^6.0.7", "vite-plugin-dts": "^4.5.0", "vitest": "^3.2.4" }, "scripts": { "dev": "vite", "watch": "vite build --watch", "build": "tsc && vite build", "preview": "vite preview", "lint": "eslint .", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "test:coverage": "vitest run --coverage" } }