-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 889 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 889 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
39
40
41
{
"name": "typescript-sdk-examples",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"dependencies": {
"@io-orkes/conductor-javascript": "^2.1.1",
"@types/uuid": "^9.0.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.1.18",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"dotenv": "^16.0.1",
"eslint": "^6.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.7.0",
"tsup": "^5.12.6",
"typescript": "^4.6.4"
},
"scripts": {
"build-email":"tsup src/emailsms/main.ts",
"build-banking":"tsup src/banking/main.ts"
},
"tsup": {
"target": "node18",
"sourcemap": true,
"format": [
"esm",
"cjs"
],
"dts": true,
"clean": true
},
"engines": {
"node": ">=18"
}
}