-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 817 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 817 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": "@harperdb/image-optimizer",
"private": "true",
"description": "A Harper component for storing and retrieving optimized images",
"version": "1.0.0",
"type": "module",
"prettier": "@harperdb/code-guidelines/prettier",
"scripts": {
"build": "tsc",
"dev": "tsc; harperdb dev .",
"format": "prettier --write .",
"test": "node --test api/test/resources.test.js"
},
"keywords": [
"harper",
"image",
"optimizer",
"sharp",
"performance",
"cache"
],
"engines": {
"node": ">=22.0.0"
},
"author": "HarperDB, Inc.",
"license": "Apache-2.0",
"dependencies": {
"harperdb": "^4.6.8",
"sharp": "^0.34.3"
},
"devDependencies": {
"@harperdb/code-guidelines": "^0.0.2",
"@types/node": "^24.3.0",
"@types/sharp": "^0.31.1",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
}
}