{
	"name": "animbase",
	"version": "1.2.0",
	"description": "Declarative animation engine",
	"main": "dist/animbase.cjs.js",
	"module": "dist/animbase.esm.js",
	"exports": {
		".": {
			"import": "./dist/animbase.esm.js",
			"require": "./dist/animbase.cjs.js"
		}
	},
	"types": "types/animbase.d.ts",
	"typesVersions": {
		"*": {
			"animbase-core-only": [
				"types/animbase-core-only.d.ts"
			]
		}
	},
	"scripts": {
		"build": "rollup -c",
		"dev": "rollup -c --watch --environment BUILD_ENV:dev",
		"test": "vitest",
		"test:ui": "vitest --ui",
		"test:run": "vitest run",
		"test:cov": "vitest run --coverage",
		"lint": "eslint src --ext .js",
		"prepublish": "yarn lint && yarn test:run && yarn build"
	},
	"author": "Agus Made <krisnaparta@gmail.com>",
	"license": "MIT",
	"devDependencies": {
		"@testing-library/dom": "^10.4.0",
		"@testing-library/jest-dom": "^6.6.3",
		"@vitest/coverage-v8": "^3.1.1",
		"@vitest/ui": "^3.1.1",
		"eslint": "^9.24.0",
		"eslint-config-prettier": "^10.1.2",
		"eslint-plugin-prettier": "^5.2.6",
		"jsdom": "^26.0.0",
		"prettier": "^3.5.3",
		"puppeteer": "^24.6.1",
		"rollup": "^4.0.0",
		"rollup-plugin-serve": "^2",
		"rollup-plugin-terser": "^7.0.2",
		"vitest": "^3.1.1"
	},
	"files": [
		"dist/",
		"types/",
		"README.md",
		"LICENSE"
	],
	"keywords": [
		"animation",
		"declarative",
		"engine",
		"css",
		"timeline",
		"javascript",
		"ease",
		"easing",
		"motion tween",
		"web animation",
		"transition",
		"css transform",
		"data attributes",
		"lightweight animation"
	],
	"bugs": {
		"url": "https://github.com/agusmade/animbase/issues"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/agusmade/animbase.git"
	},
	"homepage": "https://agusmade.github.io/animbase/"
}
