animouse
Version:
lightweight animation state machine for three js
76 lines (75 loc) • 2.41 kB
JSON
{
"name": "animouse",
"version": "0.8.0",
"description": "lightweight animation state machine for three js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && rollup -c",
"build:prod": "npm run clean && NODE_ENV=production rollup -c",
"test": "npx --node-options='--import=tsx/esm' uvu test",
"test:machine": "npx --node-options='--import=tsx/esm' uvu test/AnimationMachine",
"test:tree": "npx --node-options='--import=tsx/esm' uvu test/AnimationTree",
"test:clip": "npx --node-options='--import=tsx/esm' uvu test/ClipState",
"test:delaunay": "npx --node-options='--import=tsx/esm' uvu test/DelaunayTriangulator",
"test:freeform": "npx --node-options='--import=tsx/esm' uvu test/FreeformBlendTree",
"test:linear": "npx --node-options='--import=tsx/esm' uvu test/LinearBlendTree",
"test:math": "npx --node-options='--import=tsx/esm' uvu test/math",
"test:polar": "npx --node-options='--import=tsx/esm' uvu test/PolarBlendTree",
"coverage": "c8 --include=src --reporter=text npm test",
"prepublishOnly": "npm run build:prod && npm test"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": {
"development": "./dist/index.js",
"production": "./dist/index.min.js",
"default": "./dist/index.min.js"
},
"require": "./dist/index.min.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"keywords": [
"animation",
"three.js",
"state-machine",
"typescript",
"3d"
],
"author": "jango",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jango-git/animouse.git"
},
"type": "module",
"peerDependencies": {
"three": ">=0.157.0 <0.180.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/three": "^0.157.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"c8": "^10.1.3",
"eslint": "^9.26.0",
"rollup": "^4.40.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-transformer-minify-privates": "^1.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"uvu": "^0.5.6"
},
"dependencies": {
"eventail": "^0.2.11"
}
}