-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 730 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 730 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
{
"name": "jobs",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/index.js"
},
"author": {
"name": "Devendra Mishra",
"email": "me@dev8s.io",
"url": "https://dev8s.io"
},
"license": "MIT",
"description": "A TypeScript-based jobs service designed to run scheduled tasks and cron jobs, deployable to Kubernetes.",
"devDependencies": {
"@types/node": "22.15.27",
"dotenv": "16.4.5",
"eslint": "9.33.0",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"tsup": "8.5.1",
"typescript": "5.8.3"
},
"dependencies": {
"tsx": "^4.21.0"
}
}