-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 969 Bytes
/
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
{
"name": "@sonic-tech/catena",
"version": "0.2.0",
"type": "module",
"description": "A lightweight and extensible library for building robust Node.js APIs, fast.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist tsconfig.tsbuildinfo && tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"peerDependencies": {
"express": "^4.18.2",
"zod": "^3.22.4"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/sonic-technology/catena"
},
"author": "Sonic Technologies",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/supertest": "^6.0.2",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"packageManager": "pnpm@8.6.10"
}