forked from upstash/qstash-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.84 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
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
{
"version": "0.0.0-canary.2",
"name": "@upstash/qstash",
"description": "Official Typescript client for QStash",
"author": "Andreas Thomas <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/upstash/sdk-qstash-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/sdk-qstash-ts.git"
},
"bugs": {
"url": "https://github.com/upstash/sdk-qstash-ts/issues"
},
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"files": [
"./**"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./nextjs": {
"import": "./nextjs.mjs",
"require": "./nextjs.js"
},
"./dist/nextjs": {
"import": "./nextjs.mjs",
"require": "./nextjs.js"
}
},
"typesVersions": {
"*": {
"nextjs": [
"./nextjs.d.ts"
]
}
},
"keywords": [
"qstash",
"queue",
"events",
"serverless",
"upstash"
],
"scripts": {
"build": "tsup && cp README.md ./dist/ && cp package.json ./dist/ && cp LICENSE ./dist/",
"test": "bun test",
"fmt": "prettier --write .",
"lint": "tsc && eslint \"src/**/*.{js,ts,tsx}\" --quiet --fix",
"prepare": "husky install"
},
"devDependencies": {
"@types/crypto-js": "^4.2.0",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/bun": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"bun-types": "^1.1.7",
"eslint": "^8",
"eslint-plugin-unicorn": "^51.0.1",
"husky": "^9.0.10",
"next": "^14.0.2",
"prettier": "^3.2.5",
"tsup": "latest",
"typescript": "^5.4.5",
"undici-types": "^6.16.0",
"vitest": "latest"
},
"dependencies": {
"crypto-js": ">=4.2.0",
"jose": "^ 5.2.3"
}
}