-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1 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": "@h7/hono-fastly-static",
"version": "0.2.0",
"description": "Serve Static Files on Fastly Compute with Hono",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/harmony7/hono-fastly-static.git"
},
"author": {
"name": "Katsuyuki Omuro",
"email": "[email protected]"
},
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf build"
},
"dependencies": {
"@fastly/compute-js-static-publish": "^6.1.0",
"hono": "^4.2.7"
},
"peerDependencies": {
"@fastly/compute-js-static-publish": "^6.1.0",
"hono": "^4.2.7"
},
"devDependencies": {
"typescript": "^5.4.5"
},
"files": [
"build/**/*.js",
"build/**/*.js.map",
"build/**/*.d.ts",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"hono",
"fastly",
"compute",
"static",
"serve"
]
}