@qyu/anim-core
Version:
Animation definition and implementation
44 lines (43 loc) • 1.33 kB
JSON
{
"name": "@qyu/anim-core",
"type": "module",
"version": "1.0.2",
"main": "./build/bundle/entry/index.js",
"homepage": "https://github.com/qlwt/anim-core#readme",
"description": "Animation definition and implementation",
"keywords": ["animation", "spring", "loop", "oscillator", "chain", "sequence"],
"license": "MIT",
"files": [
"./build/**/*"
],
"repository": {
"type": "git",
"url": "github:qlwt/anim-core"
},
"scripts": {
"build": "run-s build:clear build:rollup",
"build:clear": "rimraf ./build",
"build:rollup": "rollup -c npm/rollup/rollup.config.js",
"test": "vitest -c npm/vite/vite.config.js"
},
"exports": {
".": {
"types": "./build/declaration/index.d.ts",
"import": "./build/bundle/entry/index.js"
}
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"typescript": "^5.8.2",
"typescript-transform-paths": "^3.5.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
},
"dependencies": {
"@qyu/spring": "^1.0.0",
"tslib": "^2.6.3"
}
}