-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "@eventkit-stream/workflow-test",
"version": "0.0.26",
"description": "A simple workflow testing project using Bun and Hono",
"keywords": [],
"homepage": "https://github.com/eventkit-stream/workflow-test",
"bugs": {
"url": "https://github.com/eventkit/eventkit-stream/issues",
"email": "support@example.com"
},
"license": "AGPL-3.0-or-later",
"funding": [
{
"type": "Ko-Fi",
"url": "https://ko-fi.com/eventkit-stream"
},
{
"type": "Sponsor",
"url": "https://github.com/sponsors/eventkit-stream"
}
],
"repository": {
"type": "git",
"url": "https://github.com/EventKit-Stream/workflow-test"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "bun run --hot src/index.ts",
"build": "tsc",
"pack": "tsc && pnpm pack",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src client --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "vitest"
},
"type": "module",
"main": "dist/client/index.js",
"types": "dist/client/index.d.ts",
"exports": {
".": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
}
},
"files": [
"dist/client"
],
"dependencies": {
"hono": "^4.9.7"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/bun": "latest",
"eslint": "^9.35.0",
"eslint-plugin-perfectionist": "^4.15.0",
"typescript-eslint": "^8.43.0",
"vitest": "^3.2.4"
}
}