-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.46 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@spooled/sdk",
"version": "1.0.27",
"type": "module",
"description": "Official Node.js/TypeScript SDK for Spooled Cloud job queue service",
"author": "Spooled Cloud <support@spooled.cloud>",
"license": "Apache-2.0",
"homepage": "https://spooled.cloud",
"repository": {
"type": "git",
"url": "https://github.com/Spooled-Cloud/spooled-sdk-nodejs"
},
"bugs": {
"url": "https://github.com/spooled-cloud/spooled-sdk-nodejs/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"spooled",
"job-queue",
"task-queue",
"background-jobs",
"webhooks",
"cron",
"scheduler",
"workflow"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./worker": {
"types": "./dist/worker/index.d.ts",
"import": "./dist/worker/index.js",
"require": "./dist/worker/index.cjs"
}
},
"files": [
"dist",
"proto",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build && npm run test",
"clean": "rm -rf dist",
"verify:production": "tsx scripts/verify-production.ts"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@grpc/proto-loader": "^0.8.0",
"eventsource": "^4.1.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/eventsource": "^3.0.0",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@vitest/coverage-v8": "^4.1.5",
"chalk": "^5.6.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"inquirer": "^13.4.2",
"msw": "^2.14.3",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.5"
}
}