-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
{
"name": "@grace-js/grace",
"version": "1.0.26",
"description": "An opinionated API framework",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build",
"test": "jest"
},
"keywords": [
"api",
"framework",
"grace"
],
"author": "Fumaz",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"jest": "^29.7.0",
"openapi-types": "^12.1.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"fast-querystring": "^1.1.2",
"glob": "^10.3.10",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"peerDependencies": {
"glob": "^10.3.10",
"zod": "^3.22.4"
}
}