@karmaniverous/jeeves-runner 0.1.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/LICENSE +28 -0
- package/README.md +401 -0
- package/dist/cli/jeeves-runner/index.js +880 -0
- package/dist/db/migrations/001-initial.sql +61 -0
- package/dist/index.d.ts +270 -0
- package/dist/mjs/index.js +917 -0
- package/package.json +141 -0
package/package.json
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
{
|
|
2
|
+
"author": "Jason Williscroft",
|
|
3
|
+
"bin": {
|
|
4
|
+
"jeeves-runner": "./dist/cli/jeeves-runner/index.js"
|
|
5
|
+
},
|
|
6
|
+
"auto-changelog": {
|
|
7
|
+
"output": "CHANGELOG.md",
|
|
8
|
+
"unreleased": true,
|
|
9
|
+
"commitLimit": false,
|
|
10
|
+
"hideCredit": true
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/karmaniverous/jeeves-runner/issues"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"commander": "^14.0.3",
|
|
17
|
+
"croner": "^10.0.1",
|
|
18
|
+
"fastify": "^5.7.4",
|
|
19
|
+
"pino": "^10.3.1",
|
|
20
|
+
"zod": "^4.3.6"
|
|
21
|
+
},
|
|
22
|
+
"description": "Graph-aware job execution engine with SQLite state. Part of the Jeeves platform.",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@dotenvx/dotenvx": "^1.52.0",
|
|
25
|
+
"@eslint/js": "^9.39.3",
|
|
26
|
+
"@rollup/plugin-alias": "^6.0.0",
|
|
27
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
28
|
+
"@rollup/plugin-json": "^6.1.0",
|
|
29
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
30
|
+
"@rollup/plugin-typescript": "^12.3.0",
|
|
31
|
+
"@types/fs-extra": "^11.0.4",
|
|
32
|
+
"@types/node": "^25.3.0",
|
|
33
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
34
|
+
"@vitest/eslint-plugin": "^1.6.9",
|
|
35
|
+
"auto-changelog": "^2.5.0",
|
|
36
|
+
"cross-env": "^10.1.0",
|
|
37
|
+
"eslint": "^9.39.3",
|
|
38
|
+
"eslint-config-prettier": "^10.1.8",
|
|
39
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
40
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
41
|
+
"eslint-plugin-tsdoc": "^0.5.0",
|
|
42
|
+
"fs-extra": "^11.3.3",
|
|
43
|
+
"happy-dom": "^20.7.0",
|
|
44
|
+
"knip": "^5.85.0",
|
|
45
|
+
"lefthook": "^2.1.1",
|
|
46
|
+
"prettier": "^3.8.1",
|
|
47
|
+
"release-it": "^19.2.4",
|
|
48
|
+
"rimraf": "^6.1.3",
|
|
49
|
+
"rollup": "^4.59.0",
|
|
50
|
+
"rollup-plugin-copy": "^3.5.0",
|
|
51
|
+
"rollup-plugin-dts": "^6.3.0",
|
|
52
|
+
"tslib": "^2.8.1",
|
|
53
|
+
"typedoc": "^0.28.17",
|
|
54
|
+
"typedoc-plugin-mdn-links": "^5.1.1",
|
|
55
|
+
"typedoc-plugin-replace-text": "^4.2.0",
|
|
56
|
+
"typescript": "^5.9.3",
|
|
57
|
+
"typescript-eslint": "^8.56.1",
|
|
58
|
+
"vitest": "^4.0.18"
|
|
59
|
+
},
|
|
60
|
+
"engines": {
|
|
61
|
+
"node": ">=20"
|
|
62
|
+
},
|
|
63
|
+
"exports": {
|
|
64
|
+
".": {
|
|
65
|
+
"types": "./dist/index.d.ts",
|
|
66
|
+
"default": "./dist/mjs/index.js"
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
"files": [
|
|
70
|
+
"dist"
|
|
71
|
+
],
|
|
72
|
+
"homepage": "https://github.com/karmaniverous/jeeves-runner#readme",
|
|
73
|
+
"keywords": [
|
|
74
|
+
"jeeves",
|
|
75
|
+
"job-scheduler",
|
|
76
|
+
"cron",
|
|
77
|
+
"sqlite",
|
|
78
|
+
"workflow",
|
|
79
|
+
"automation",
|
|
80
|
+
"graph",
|
|
81
|
+
"fastify",
|
|
82
|
+
"typescript"
|
|
83
|
+
],
|
|
84
|
+
"license": "BSD-3-Clause",
|
|
85
|
+
"module": "dist/mjs/index.js",
|
|
86
|
+
"name": "@karmaniverous/jeeves-runner",
|
|
87
|
+
"publishConfig": {
|
|
88
|
+
"access": "public"
|
|
89
|
+
},
|
|
90
|
+
"release-it": {
|
|
91
|
+
"git": {
|
|
92
|
+
"changelog": "npx auto-changelog --unreleased-only --stdout --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
|
|
93
|
+
"commitMessage": "chore: release v${version}",
|
|
94
|
+
"requireBranch": "main"
|
|
95
|
+
},
|
|
96
|
+
"github": {
|
|
97
|
+
"release": true
|
|
98
|
+
},
|
|
99
|
+
"hooks": {
|
|
100
|
+
"after:init": [
|
|
101
|
+
"npm run lint",
|
|
102
|
+
"npm run test",
|
|
103
|
+
"npm run knip",
|
|
104
|
+
"npm run build"
|
|
105
|
+
],
|
|
106
|
+
"before:npm:release": [
|
|
107
|
+
"npx auto-changelog -p",
|
|
108
|
+
"npm run docs",
|
|
109
|
+
"git add -A"
|
|
110
|
+
],
|
|
111
|
+
"after:release": [
|
|
112
|
+
"git switch -c release/${version}",
|
|
113
|
+
"git push -u origin release/${version}",
|
|
114
|
+
"git switch ${branchName}"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
"npm": {
|
|
118
|
+
"publish": true
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"repository": {
|
|
122
|
+
"type": "git",
|
|
123
|
+
"url": "git+https://github.com/karmaniverous/jeeves-runner.git"
|
|
124
|
+
},
|
|
125
|
+
"scripts": {
|
|
126
|
+
"build": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
127
|
+
"changelog": "auto-changelog",
|
|
128
|
+
"diagrams": "cd diagrams/src && plantuml -tpng -o ../out -r .",
|
|
129
|
+
"docs": "typedoc",
|
|
130
|
+
"knip": "knip",
|
|
131
|
+
"lint": "eslint .",
|
|
132
|
+
"lint:fix": "eslint --fix .",
|
|
133
|
+
"release": "dotenvx run -f .env.local -- release-it",
|
|
134
|
+
"release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease",
|
|
135
|
+
"test": "vitest run",
|
|
136
|
+
"typecheck": "tsc"
|
|
137
|
+
},
|
|
138
|
+
"type": "module",
|
|
139
|
+
"types": "dist/index.d.ts",
|
|
140
|
+
"version": "0.1.0"
|
|
141
|
+
}
|