forked from paradigmxyz/centaur
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "slackbot",
"version": "0.0.0",
"license": "Apache-2.0 OR MIT",
"type": "module",
"imports": {
"#*": "./src/*",
"#package.json": "./package.json"
},
"scripts": {
"dev": "bun --hot --watch src/index.ts",
"test": "bun test src/*.test.ts src/**/*.test.ts",
"test:e2e:slack": "bun test test/emulate",
"format": "oxfmt --config='oxfmt.config.ts' --write",
"lint": "oxlint --config='oxlint.config.ts' --type-aware --type-check --fix-dangerously",
"check": "bun format && bun lint",
"check:types": "bun tsgo --project tsconfig.json --noEmit"
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.218.0",
"@opentelemetry/resources": "^2.7.1",
"@opentelemetry/sdk-trace-base": "^2.7.1",
"@opentelemetry/sdk-trace-node": "^2.7.1",
"@opentelemetry/semantic-conventions": "^1.41.1",
"@slack/types": "^2.19.0",
"@slack/web-api": "^7.15.2",
"@std/ulid": "npm:@jsr/std__ulid",
"hono": "^4.12.18",
"zod": "^4.4.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "^1.3.13",
"@types/node": "^25.7.0",
"@typescript/native-preview": "^7.0.0-dev.20260512.1",
"emulate": "^0.5.0",
"oxfmt": "^0.49.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.22.1",
"typescript": "^6.0.3"
}
}