-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.64 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@astropub/codecs",
"description": "Codecs for NodeJS",
"version": "0.4.4",
"type": "module",
"main": "./dist/codecs.js",
"types": "./dist/codecs.d.ts",
"exports": {
".": {
"import": "./dist/codecs.js",
"type": "./dist/codecs.d.ts"
}
},
"files": [
"dist"
],
"keywords": [
"avif",
"conversion",
"convert",
"converts",
"image",
"images",
"jpeg",
"jpg",
"jxl",
"png",
"resize",
"wasm",
"webp",
"wp2"
],
"license": "(CC0-1.0 AND Apache-2.0 AND BSD-3-Clause)",
"repository": "astro-community/codecs",
"author": "Jonathan Neal <[email protected]>",
"bugs": "https://github.com/astro-community/codecs/issues",
"homepage": "https://github.com/astro-community/codecs#readme",
"scripts": {
"build": "node run/build.js",
"release": "npm publish --access public",
"test": "node run/test.js"
},
"devDependencies": {
"@astropub/webapi": "^0.10.4",
"@types/node": "^17.0.10",
"acorn": "^8.7.0",
"acorn-class-fields": "^1.0.0",
"acorn-import-assertions": "^1.8.0",
"acorn-logical-assignment": "^0.1.4",
"acorn-loose": "^8.3.0",
"acorn-private-methods": "^1.0.0",
"adm-zip": "^0.5.9",
"blurhash": "^1.1.4",
"astring": "^1.8.1"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
"files": [
".stackblitzrc",
"*.json",
"*.md",
"*.yml"
],
"options": {
"useTabs": false
}
}
]
}
}