-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 738 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 738 Bytes
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",
"version": "0.5.3",
"description": "Command line utility to convert images to AVIF",
"author": "Lovell Fuller <npm@lovell.info>",
"license": "Apache-2.0",
"bin": {
"avif": "./bin/avif.js"
},
"scripts": {
"test": "prettier --check '**/*.js'"
},
"repository": {
"type": "git",
"url": "git://github.com/lovell/avif-cli"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"files": [
"bin/",
"lib/"
],
"funding": {
"url": "https://opencollective.com/libvips"
},
"keywords": [
"avif"
],
"dependencies": {
"sharp": "^0.34.4",
"tinyglobby": "^0.2.15",
"yargs": "^17.7.2"
},
"devDependencies": {
"prettier": "^3.6.2"
}
}