Skip to content

Commit 1d83f30

Browse files
committed
chore: minor adjustments
1 parent b866fee commit 1d83f30

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { dts } from 'bun-plugin-dtsx'
22

33
await Bun.build({
44
entrypoints: ['src/index.ts'],
5+
target: 'browser',
56
outdir: './dist',
67
plugins: [dts()],
78
})

package.json

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
11
{
2-
"name": "ts-ndarray",
2+
"name": "ts-gif",
33
"type": "module",
44
"version": "0.1.1",
5-
"description": "Multidimensional arrays for JavaScript & TypeScript.",
5+
"description": "TypeScript implementation of a performant GIF encoder & decoder.",
66
"author": "Chris Breuer <chris@stacksjs.org>",
77
"license": "MIT",
8-
"homepage": "https://github.com/stacksjs/ts-ndarray#readme",
8+
"homepage": "https://github.com/stacksjs/ts-gif#readme",
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/stacksjs/ts-ndarray.git"
11+
"url": "git+https://github.com/stacksjs/ts-gif.git"
1212
},
1313
"bugs": {
14-
"url": "https://github.com/stacksjs/ts-ndarray/issues"
14+
"url": "https://github.com/stacksjs/ts-gif/issues"
1515
},
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+
],
1726
"exports": {
1827
".": {
1928
"types": "./dist/index.d.ts",
@@ -27,12 +36,12 @@
2736
"types": "./dist/index.d.ts",
2837
"files": ["README.md", "dist"],
2938
"scripts": {
30-
"build": "bun --bun build.ts && bun run compile",
39+
"build": "bun --bun build.ts",
3140
"lint": "bunx --bun eslint .",
3241
"lint:fix": "bunx --bun eslint . --fix",
3342
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
3443
"changelog": "bunx changelogen --output CHANGELOG.md",
35-
"prepublishOnly": "bun --bun run build && bun run compile:all",
44+
"prepublishOnly": "bun --bun run build",
3645
"release": "bun run changelog && bunx bumpp package.json --all",
3746
"test": "bun test",
3847
"dev:docs": "bun --bun vitepress dev docs",

0 commit comments

Comments
 (0)