-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "@fedify/debugger",
"version": "2.1.0",
"description": "Embedded ActivityPub debug dashboard for Fedify",
"type": "module",
"main": "./dist/mod.cjs",
"module": "./dist/mod.js",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/mod.d.ts",
"require": "./dist/mod.d.cts",
"default": "./dist/mod.d.ts"
},
"import": "./dist/mod.js",
"require": "./dist/mod.cjs",
"default": "./dist/mod.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/fedify.git",
"directory": "packages/debugger"
},
"peerDependencies": {
"@fedify/fedify": "workspace:^"
},
"dependencies": {
"@js-temporal/polyfill": "catalog:",
"@logtape/logtape": "catalog:",
"@opentelemetry/api": "catalog:",
"@opentelemetry/context-async-hooks": "catalog:",
"@opentelemetry/core": "catalog:",
"@opentelemetry/sdk-trace-base": "catalog:",
"hono": "catalog:"
},
"devDependencies": {
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build:self": "tsdown",
"build": "pnpm --filter @fedify/debugger... run build:self",
"prepack": "pnpm build",
"prepublish": "pnpm build",
"test": "node --experimental-transform-types --test",
"test:bun": "bun test"
}
}