-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "astro-sanity-assets",
"description": "Download Sanity File Assets to your Astro site",
"version": "1.0.1",
"type": "module",
"author": "kolossal <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kolossal-io/astro-sanity-assets"
},
"keywords": [
"astro-integration",
"astro-component",
"withastro",
"media",
"sanity"
],
"bugs": "https://github.com/kolossal-io/astro-sanity-assets/issues",
"homepage": "https://github.com/kolossal-io/astro-sanity-assets",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@sanity/client": "^6.21.3",
"astro": "^4.14.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"@sanity/client": "^6.18.3",
"astro": "^3.0.0 || ^4.0.0 || ^5.0.0-beta.0"
},
"engines": {
"node": ">=18.14.1"
},
"publishConfig": {
"access": "public"
}
}