-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "jackd",
"version": "3.1.1",
"description": "Modern beanstalkd client for Node.js",
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && bun build.ts",
"dev": "tsc --watch",
"lint": "eslint src"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/getjackd/jackd.git"
},
"keywords": [
"beanstalkd"
],
"author": "Dexter Miguel",
"license": "MIT",
"bugs": {
"url": "https://github.com/getjackd/jackd/issues"
},
"homepage": "https://github.com/getjackd/jackd#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "22.10.7",
"esbuild": "0.24.2",
"eslint": "9.18.0",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript": "5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "3.0.2",
"yaml": "^2.7.0"
}
}