-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 2.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@upstash/workflow",
"version": "0.1.0",
"description": "Durable, Reliable and Performant Serverless Functions",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"files": [
"./*"
],
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./dist/nextjs": {
"import": "./nextjs.mjs",
"require": "./nextjs.js"
},
"./nextjs": {
"import": "./nextjs.mjs",
"require": "./nextjs.js"
},
"./h3": {
"import": "./h3.mjs",
"require": "./h3.js"
},
"./svelte": {
"import": "./svelte.mjs",
"require": "./svelte.js"
},
"./solidjs": {
"import": "./solidjs.mjs",
"require": "./solidjs.js"
},
"./workflow": {
"import": "./workflow.mjs",
"require": "./workflow.js"
},
"./hono": {
"import": "./hono.mjs",
"require": "./hono.js"
},
"./cloudflare": {
"import": "./cloudflare.mjs",
"require": "./cloudflare.js"
},
"./astro": {
"import": "./astro.mjs",
"require": "./astro.js"
},
"./express": {
"import": "./express.mjs",
"require": "./express.js"
}
},
"scripts": {
"build": "tsup && cp README.md ./dist/ && cp package.json ./dist/ && cp LICENSE ./dist/",
"test": "bun test src",
"fmt": "prettier --write .",
"lint": "tsc && eslint \"{src,platforms}/**/*.{js,ts,tsx}\" --quiet --fix",
"check-exports": "bun run build && cd dist && attw -P",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/workflow-ts.git"
},
"keywords": [
"upstash",
"qstash",
"workflow",
"serverless"
],
"author": "Cahid Arda Oz",
"license": "MIT",
"bugs": {
"url": "https://github.com/upstash/workflow-ts/issues"
},
"homepage": "https://github.com/upstash/workflow-ts#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@solidjs/start": "^1.0.8",
"@sveltejs/kit": "^2.6.1",
"@types/bun": "^1.1.10",
"@types/express": "^5.0.0",
"astro": "^4.16.7",
"eslint": "^9.11.1",
"eslint-plugin-unicorn": "^55.0.0",
"express": "^4.21.1",
"globals": "^15.10.0",
"h3": "^1.12.0",
"hono": "^4.6.3",
"husky": "^9.1.6",
"next": "^14.2.14",
"prettier": "3.3.3",
"tsc": "^2.0.4",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@upstash/qstash": "^2.7.17"
},
"directories": {
"example": "examples"
}
}