-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.31 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
48
49
{
"$schema": "https://json.schemastore.org/package.json",
"name": "mysql-queue",
"description": "A lite job queue for Node.js",
"author": "lilac <[email protected]>",
"version": "0.1.4",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rabrain/mysql-queue.git"
},
"keywords": [
"queue"
],
"dependencies": {
"async-mutex": "^0.4.1",
"drizzle-orm": "^0.38.2",
"mysql2": "^3.11.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/node21": "^21.0.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.2",
"vitest": "^1.3.1"
},
"scripts": {
"build": "tsc -d && cp -r src/drizzle dist/drizzle",
"db:generate": "drizzle-kit generate",
"typecheck": "tsc --noEmit",
"test": "vitest",
"format": "prettier . --ignore-path ../../.prettierignore",
"lint": "eslint ."
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}