-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.38 KB
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
{
"name": "astro-hotspot",
"version": "0.1.0",
"description": "Astro image service: hotspot cropping (x/y or '70% 34%') via Sharp's extract+resize",
"type": "module",
"license": "MIT",
"author": "David Hell <dev@davidhell.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/whytspace/astro-hotspot.git"
},
"homepage": "https://github.com/whytspace/astro-hotspot#readme",
"bugs": {
"url": "https://github.com/whytspace/astro-hotspot/issues"
},
"keywords": [
"astro-integration",
"astro-component",
"astro",
"image",
"sharp",
"hotspot",
"focal-point",
"art-direction"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./service": {
"types": "./dist/service.d.ts",
"import": "./dist/service.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"test": "vitest run",
"format": "prettier --write .",
"prepublishOnly": "pnpm build"
},
"peerDependencies": {
"astro": ">=5.0.0 <7.0.0",
"sharp": ">=0.33.0 <0.36.0"
},
"devDependencies": {
"astro": "6.3.7",
"prettier": "3.8.3",
"sharp": "0.34.5",
"typescript": "6.0.3",
"vitest": "4.1.7"
}
}