-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 1020 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "gifenc",
"version": "1.0.3",
"description": "very fast JS GIF encoder",
"type": "module",
"main": "./src/index.js",
"types": "./types.d.ts",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"devDependencies": {
"esbuild": "^0.8.52",
"get-pixels": "^3.3.2",
"serve": "^11.3.2"
},
"scripts": {
"prepublishOnly": "npm run dist:cjs",
"serve": "serve .",
"dist:cjs": "esbuild ./src/index.js --bundle --format=cjs --outfile=dist/gifenc.js --sourcemap --target=chrome58,firefox57,safari11,edge16,node12"
},
"ava": {
"require": [
"esm"
],
"ignoredByWatcher": [
"test/output"
]
},
"keywords": [
"gif",
"encoder"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/gifenc.git"
},
"homepage": "https://github.com/mattdesl/gifenc",
"bugs": {
"url": "https://github.com/mattdesl/gifenc/issues"
}
}