UNPKG

ts-gif

Version:

TypeScript implementation of a performant GIF encoder & decoder.

83 lines (82 loc) 2.26 kB
{ "name": "ts-gif", "type": "module", "version": "0.1.2", "description": "TypeScript implementation of a performant GIF encoder & decoder.", "author": "Chris Breuer <chris@stacksjs.org>", "license": "MIT", "homepage": "https://github.com/stacksjs/ts-gif#readme", "repository": { "type": "git", "url": "git+https://github.com/stacksjs/ts-gif.git" }, "bugs": { "url": "https://github.com/stacksjs/ts-gif/issues" }, "keywords": [ "gif", "gif89a", "gif87a", "encoder", "decoder", "typescript", "ts-gif", "library" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./*": { "import": "./dist/*" } }, "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": ["README.md", "dist"], "scripts": { "build": "bun --bun build.ts", "lint": "bunx --bun eslint .", "lint:fix": "bunx --bun eslint . --fix", "fresh": "bunx rimraf node_modules/ bun.lock && bun i", "changelog": "bunx changelogen --output CHANGELOG.md", "prepublishOnly": "bun --bun run build", "release": "bun run changelog && bunx bumpp package.json --all", "test": "bun test", "dev:docs": "bun --bun vitepress dev docs", "build:docs": "bun --bun vitepress build docs", "preview:docs": "bun --bun vitepress preview docs", "typecheck": "bun --bun tsc --noEmit" }, "dependencies": { "data-uri-to-buffer": "^6.0.2" }, "devDependencies": { "@iconify-json/carbon": "^1.2.6", "@shikijs/vitepress-twoslash": "^2.3.2", "@stacksjs/eslint-config": "^3.15.1-beta.4", "@types/bun": "^1.2.2", "@types/cwise-compiler": "^1.1.6", "@vite-pwa/vitepress": "^0.5.3", "bumpp": "^10.0.2", "bun-plugin-dtsx": "^0.21.9", "bunfig": "^0.5.3", "changelogen": "^0.5.7", "cwise-compiler": "^1.1.3", "lint-staged": "^15.4.3", "simple-git-hooks": "^2.11.1", "typescript": "^5.7.3", "unocss": "^65.4.3", "unplugin-icons": "^22.0.0", "unplugin-vue-components": "^28.0.0", "vite-plugin-pwa": "^0.21.1", "vitepress": "^1.6.3" }, "overrides": { "unconfig": "0.6.0" }, "lint-staged": { "*.{js,ts}": "bunx --bun eslint . --fix" } }