@cronvello/sdk 0.1.3 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +53 -0
- package/README.md +135 -2
- package/dist/cli.cjs +1106 -10
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1104 -12
- package/dist/cli.js.map +1 -1
- package/dist/dev.cjs +1186 -0
- package/dist/dev.cjs.map +1 -0
- package/dist/dev.d.cts +318 -0
- package/dist/dev.d.ts +318 -0
- package/dist/dev.js +1173 -0
- package/dist/dev.js.map +1 -0
- package/dist/index.cjs +645 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +644 -7
- package/dist/index.js.map +1 -1
- package/docs/dashboard.png +0 -0
- package/package.json +12 -1
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cronvello/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Code-first cron jobs for Cronvello. Define jobs in your code, the SDK syncs them to https://api.cronvello.com and runs them — no dashboard required.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cron",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
+
"docs",
|
|
31
32
|
"README.md",
|
|
32
33
|
"CHANGELOG.md",
|
|
33
34
|
"LICENSE"
|
|
@@ -69,6 +70,16 @@
|
|
|
69
70
|
"default": "./dist/next.cjs"
|
|
70
71
|
}
|
|
71
72
|
},
|
|
73
|
+
"./dev": {
|
|
74
|
+
"import": {
|
|
75
|
+
"types": "./dist/dev.d.ts",
|
|
76
|
+
"default": "./dist/dev.js"
|
|
77
|
+
},
|
|
78
|
+
"require": {
|
|
79
|
+
"types": "./dist/dev.d.cts",
|
|
80
|
+
"default": "./dist/dev.cjs"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
72
83
|
"./package.json": "./package.json"
|
|
73
84
|
},
|
|
74
85
|
"scripts": {
|