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
38 lines (38 loc) · 845 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 845 Bytes
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
{
"name": "@wundergraph/cosmo-cdn",
"version": "0.11.0",
"author": {
"name": "WunderGraph Maintainers",
"email": "info@wundergraph.com"
},
"publishConfig": {
"access": "public"
},
"repository": {
"url": "https://github.com/wundergraph/cosmo"
},
"license": "Apache-2.0",
"scripts": {
"dev": "tsc --watch",
"build": "rm -rf dist && tsc",
"test:watch": "vitest test",
"test": "vitest run",
"lint": "eslint --cache && prettier -c src test",
"format:fix": "prettier --write -c src test"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"hono": "4.12.7",
"jose": "^5.2.4"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-unjs": "^0.2.1",
"typescript": "5.5.2",
"vitest": "^3.2.4"
}
}