-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "astro-sanity-picture",
"version": "0.2.0",
"description": "An Astro component for rendering a responsive <picture> element for an image fetched from Sanity",
"type": "module",
"main": "./src/index.ts",
"module": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"check": "tsc --noEmit -p ."
},
"dependencies": {
"@sanity/image-url": "^1.0.2",
"groq": "^3.6.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.50.0",
"astro": "^2.1.2",
"eslint": "^8.33.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"prettier": "^2.8.3",
"prettier-plugin-astro": "0.1.0-next.5",
"typescript": "^4.9.5"
},
"peerDependencies": {
"astro": "> 2.0.0"
},
"keywords": [
"astro",
"astro-component",
"astro-components",
"sanity",
"picture",
"responsive"
],
"repository": {
"type": "git",
"url": "git+https://github.com/otterdev-io/astro-sanity-picture.git"
},
"homepage": "https://github.com/otterdev-io/astro-sanity-picture#readme",
"author": "Otterdev",
"maintainers": [
{
"name": "Christopher Fraser",
"email": "chris@otterdev.io"
}
],
"license": "ISC"
}