webamp/packages/ani-cursor/package.json
Jordan Eldredge 1db12cfce2 Add missing @types dependencies for ani-cursor
Add @types/jest and @types/node as devDependencies to ani-cursor package.
These were missing but referenced in tsconfig.json, causing TypeScript
compilation failures in CI with pnpm's stricter package isolation.
2025-07-06 13:46:42 -07:00

45 lines
1.1 KiB
JSON

{
"name": "ani-cursor",
"version": "0.0.5",
"description": "Render .ani cursors as CSS animations in the browser",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/**/*.ts"
],
"author": "Jordan Eldredge <jordan@jordaneldredge.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/captbaritone/webamp.git",
"directory": "packages/ani-cursor"
},
"bugs": {
"url": "https://github.com/captbaritone/webamp/issues"
},
"homepage": "https://github.com/captbaritone/webamp/tree/master/packages/ani-cursor",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublish": "tsc"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.20.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.10",
"typescript": "^5.3.3"
},
"dependencies": {
"byte-data": "18.1.1",
"riff-file": "^1.0.3"
},
"jest": {
"modulePathIgnorePatterns": [
"dist"
],
"testEnvironment": "jsdom"
}
}