forked from wundergraph/cosmo
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"name": "cdn",
"version": "0.17.0",
"private": true,
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"repository": {
"url": "https://github.com/wundergraph/cosmo"
},
"main": "dist/index.js",
"files": [
"dist"
],
"license": "Apache-2.0",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "rm -rf dist && tsc",
"start": "tsx src/index.ts",
"lint": "eslint --cache && prettier -c src",
"format": "prettier -w -c .",
"postversion": "name=$(jq -r .name package.json); version=$(jq -r .version package.json); gh workflow run image-release.yml -F name=$name -F workingDirectory=cdn-server -F tag=$version -F dockerContext=."
},
"dependencies": {
"@aws-sdk/client-s3": "^3.996.0",
"@hono/node-server": "1.19.10",
"@wundergraph/cosmo-cdn": "workspace:*",
"dotenv": "^16.4.5",
"hono": "4.12.7"
},
"devDependencies": {
"@types/node": "^20.9.0",
"eslint": "^8.57.1",
"eslint-config-unjs": "^0.2.1",
"tsx": "^4.16.0",
"typescript": "5.5.2"
}
}