-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "@choreography-ts/transport-express",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run --silent",
"coverage": "vitest run --silent --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@choreography-ts/core": "workspace:*",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/node-fetch": "2.x",
"get-port": "^7.0.0",
"rimraf": "^5.0.1",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@adobe/node-fetch-retry": "^2.2.0",
"body-parser": "^1.20.2",
"express": "^4.18.2"
},
"peerDependencies": {
"@choreography-ts/core": "workspace:*"
}
}