-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "@getproductstack/jobs",
"version": "0.3.0",
"type": "module",
"license": "MIT",
"author": "Ryan T. Brown",
"keywords": ["background", "tasks", "jobs", "nextjs", "vercel"],
"repository": {
"type": "git",
"url": "https://github.com/getproductstack/jobs"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./nextjs": {
"types": "./dist/nextjs.d.ts",
"default": "./dist/nextjs.js"
}
},
"files": ["dist", "package.json", "LICENSE", "README.md"],
"scripts": {
"build": "bunchee",
"dev": "bunchee -w --no-clean",
"test": "bun test",
"lint": "biome lint . --apply",
"format": "biome format . --apply",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@upstash/qstash": "^2.6.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"bunchee": "^5.3.1",
"typescript": "^5.4.5",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
"@types/bun": "^1.0.12",
"expect-type": "^0.19.0"
},
"peerDependencies": {
"typescript": ">=5.0.0",
"@upstash/qstash": "^2.6.2"
}
}