-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 KB
/
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
{
"name": "avif.js",
"version": "0.2.0",
"description": "AVIF polyfill for the browser",
"main": "avif.js",
"scripts": {
"start": "parcel demo/index.html --no-hmr",
"size": "cat *.js | terser -c -m | gzip -c | wc -c",
"update-demo": "D=`mktemp -d` && parcel build demo/index.html --out-dir \"$D\" --public-url ./ && git checkout gh-pages && rm `git ls-files *` && mv \"$D\"/* . && rmdir \"$D\" && git add -A && git commit -m 'Update demo'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/avif.js.git"
},
"keywords": [
"AVIF",
"AV1",
"image",
"polyfill"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Kagami/avif.js/issues"
},
"homepage": "https://github.com/Kagami/avif.js#readme",
"parcelDisableLoaders": [
"wasm"
],
"dependencies": {
"dav1d.js": "^0.1.1"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-disable-loaders": "^1.0.3",
"terser": "^3.17.0"
}
}