-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "astro-https-image-endpoint",
"type": "module",
"version": "0.1.1",
"description": "As an alternative image endpoint in Astro local development",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"release": "pnpm build && pnpm publish --access public --no-git-checks",
"preinstall": "npx only-allow pnpm"
},
"keywords": [
"astro",
"https",
"image",
"endpoint"
],
"engines": {
"node": ">=18.14.1",
"pnpm": ">=8.6.12"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/unix/astro-https-image-endpoint"
},
"packageManager": "pnpm@8.6.12",
"author": "@unix (witt)",
"license": "MIT",
"prettier": "@mest-fe/prettier",
"devDependencies": {
"@mest-fe/prettier": "^0.1.0",
"@types/node": "^20.7.0",
"astro": "^3.1.4",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"mime": "^3.0.0"
},
"peerDependencies": {
"astro": "^3.0.0"
}
}