-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "@vitnode/node-cron",
"version": "1.2.0-canary.70",
"description": "Node-cron adapter for VitNode, enabling cron job scheduling and management.",
"author": "VitNode Team",
"license": "MIT",
"homepage": "https://vitnode.com",
"repository": {
"type": "git",
"url": "git+https://github.com/aXenDeveloper/vitnode.git",
"directory": "packages/node-cron"
},
"keywords": [
"vitnode",
"node-cron",
"cron",
"scheduler"
],
"type": "module",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"scripts": {
"build:plugins": "tsc && swc src -d dist --config-file .swcrc && tsc-alias -p tsconfig.json",
"dev:plugins": "concurrently \"tsc -w --preserveWatchOutput\" \"swc src -d dist --config-file .swcrc -w\" \"tsc-alias -w\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"node-cron": "^4.2.1"
},
"devDependencies": {
"@swc/cli": "^0.7.9",
"@swc/core": "^1.15.2",
"@vitnode/config": "workspace:*",
"@vitnode/core": "workspace:*",
"concurrently": "^9.2.1",
"eslint": "^9.39.1",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3"
}
}