-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
45
46
47
48
49
{
"name": "seraex",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc --build",
"build.watch": "tsc --build --watch",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"start": "node lib/worker.js",
"start:dev": "nodemon src/worker.ts",
"start:prod": "node lib/worker.js"
},
"nodemonConfig": {
"execMap": {
"ts": "ts-node"
},
"ext": "ts",
"watch": [
"src"
]
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@temporalio/activity": "^1.13.2",
"@temporalio/client": "^1.13.2",
"@temporalio/envconfig": "^1.13.2",
"@temporalio/worker": "^1.13.2",
"@temporalio/workflow": "^1.13.2",
"ai": "^4.3.16",
"dotenv": "^17.2.4",
"zod": "^3.24.4"
},
"devDependencies": {
"@temporalio/testing": "^1.13.2",
"@tsconfig/node24": "^24.0.0",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}