-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.15 KB
/
package.json
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
{
"name": "plainjob",
"version": "0.0.14",
"description": "A queue based on SQLite capable of processing 15k jobs/s.",
"type": "module",
"main": "dist/plainjob.js",
"types": "dist/plainjob.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc --noEmit && tsup",
"test:better": "vitest run test/better.test.ts",
"test:bun": "bun test test/bun.test.ts",
"bench:better": "tsx bench/better.ts",
"bench:bun": "bun run bench/bun.ts",
"check": "bun run test:better && bun run test:bun && bun run bench:better && bun run bench:bun",
"publish": "changelogen --publish --release"
},
"keywords": [
"plainjob",
"plainstack",
"sqlite",
"bun",
"better-sqlite3",
"typescript",
"queue"
],
"author": "Josef Erben <[email protected]>",
"license": "MIT",
"dependencies": {
"cron-parser": "^4.9.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/bun": "latest",
"better-sqlite3": "^11.0.0",
"changelogen": "^0.5.5",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
}
}