|
1 | 1 | { |
2 | | - "name": "ts-ndarray", |
| 2 | + "name": "ts-gif", |
3 | 3 | "type": "module", |
4 | 4 | "version": "0.1.1", |
5 | | - "description": "Multidimensional arrays for JavaScript & TypeScript.", |
| 5 | + "description": "TypeScript implementation of a performant GIF encoder & decoder.", |
6 | 6 | "author": "Chris Breuer <chris@stacksjs.org>", |
7 | 7 | "license": "MIT", |
8 | | - "homepage": "https://github.com/stacksjs/ts-ndarray#readme", |
| 8 | + "homepage": "https://github.com/stacksjs/ts-gif#readme", |
9 | 9 | "repository": { |
10 | 10 | "type": "git", |
11 | | - "url": "git+https://github.com/stacksjs/ts-ndarray.git" |
| 11 | + "url": "git+https://github.com/stacksjs/ts-gif.git" |
12 | 12 | }, |
13 | 13 | "bugs": { |
14 | | - "url": "https://github.com/stacksjs/ts-ndarray/issues" |
| 14 | + "url": "https://github.com/stacksjs/ts-gif/issues" |
15 | 15 | }, |
16 | | - "keywords": ["typescript", "ts-ndarray", "library", "arrays", "multidimensional"], |
| 16 | + "keywords": [ |
| 17 | + "gif", |
| 18 | + "gif89a", |
| 19 | + "gif87a", |
| 20 | + "encoder", |
| 21 | + "decoder", |
| 22 | + "typescript", |
| 23 | + "ts-gif", |
| 24 | + "library" |
| 25 | + ], |
17 | 26 | "exports": { |
18 | 27 | ".": { |
19 | 28 | "types": "./dist/index.d.ts", |
|
27 | 36 | "types": "./dist/index.d.ts", |
28 | 37 | "files": ["README.md", "dist"], |
29 | 38 | "scripts": { |
30 | | - "build": "bun --bun build.ts && bun run compile", |
| 39 | + "build": "bun --bun build.ts", |
31 | 40 | "lint": "bunx --bun eslint .", |
32 | 41 | "lint:fix": "bunx --bun eslint . --fix", |
33 | 42 | "fresh": "bunx rimraf node_modules/ bun.lock && bun i", |
34 | 43 | "changelog": "bunx changelogen --output CHANGELOG.md", |
35 | | - "prepublishOnly": "bun --bun run build && bun run compile:all", |
| 44 | + "prepublishOnly": "bun --bun run build", |
36 | 45 | "release": "bun run changelog && bunx bumpp package.json --all", |
37 | 46 | "test": "bun test", |
38 | 47 | "dev:docs": "bun --bun vitepress dev docs", |
|
0 commit comments