-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.87 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
78
79
80
{
"name": "@tidaltheory/lens",
"version": "1.2.1",
"description": "Optimise & thumbnail images, and store metadata",
"keywords": [
"sharp",
"image",
"optimization",
"metadata",
"lqip",
"cli"
],
"license": "ISC",
"author": "Jeff Nelson (https://tidaltheory.io)",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts"
}
}
},
"types": "types/index.d.ts",
"bin": {
"lens": "bin/index.js"
},
"files": [
"bin",
"dist",
"types"
],
"scripts": {
"_build": "tsdx build --entry src/cli.ts --target node --format cjs",
"build": "npm run setup && npm run build:bundle",
"build:bundle": "esbuild src/cli.ts --bundle --platform=node --target=node16 --external:sharp --outfile=dist/index.js",
"changeset": "changeset add",
"lint": "npm run setup && eslint .",
"prepare": "husky install",
"release": "npm run build && changeset publish",
"setup": "zazen configure"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"dependencies": {
"@mattduffy/exiftool": "1.4.1",
"exif-reader": "1.0.3",
"globby": "13.1.3",
"is-plain-object": "5.0.0",
"lowdb": "5.0.5",
"multimatch": "6.0.0",
"node-vibrant": "3.2.1-alpha.1",
"ora": "6.1.2",
"pkg-conf": "4.0.0",
"sade": "1.8.1",
"sharp": "0.31.2",
"ts-node-iptc": "1.0.11"
},
"devDependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2",
"@types/eslint": "8.4.10",
"@types/node": "18.11.13",
"@types/sharp": "0.31.0",
"@zazen/cli": "0.5.0",
"esbuild": "0.16.4",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"tsdx": "0.14.1",
"tslib": "2.4.1",
"type-fest": "3.3.0",
"typescript": "4.9.4"
},
"engines": {
"node": ">=16"
}
}