-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.04 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.04 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
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
111
112
113
114
115
116
117
118
119
{
"name": "@fedify/cli",
"version": "2.1.0",
"type": "module",
"files": [
"README.md",
"dist/"
],
"bin": {
"fedify": "./dist/mod.js"
},
"scripts": {
"build:self": "tsdown",
"build": "pnpm --filter @fedify/cli... run build:self",
"prepack": "pnpm build",
"prepublish": "pnpm build",
"pretest": "pnpm build",
"test": "node --test --experimental-transform-types 'src/**/*.test.ts' '!src/init/test/**'",
"test-init": "deno task test-init",
"pretest:bun": "pnpm build",
"test:bun": "bun test",
"run": "pnpm build && node --disable-warning=ExperimentalWarning dist/mod.js",
"runi": "tsdown && node --disable-warning=ExperimentalWarning dist/mod.js",
"run:bun": "pnpm build && bun dist/mod.js",
"runi:bun": "tsdown && bun dist/mod.js"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0",
"deno": ">=2.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"description": "CLI toolchain for Fedify and debugging ActivityPub",
"keywords": [
"fedify",
"activitypub",
"cli",
"fediverse"
],
"homepage": "https://fedify.dev/cli",
"bugs": {
"url": "https://github.com/fedify-dev/fedify/issues"
},
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"funding": [
"https://opencollective.com/fedify",
"https://github.com/sponsors/dahlia"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/fedify.git",
"directory": "packages/cli"
},
"exports": "./dist/mod.js",
"imports": {
"#kv": {
"bun": "./dist/kv.bun.js",
"default": "./dist/kv.node.js"
}
},
"dependencies": {
"@fedify/fedify": "workspace:*",
"@fedify/init": "workspace:*",
"@fedify/relay": "workspace:*",
"@fedify/sqlite": "workspace:*",
"@fedify/vocab": "workspace:*",
"@fedify/vocab-runtime": "workspace:*",
"@fedify/vocab-tools": "workspace:*",
"@fedify/webfinger": "workspace:*",
"@fxts/core": "catalog:",
"@optique/config": "catalog:",
"@optique/core": "catalog:",
"@optique/run": "catalog:",
"@hongminhee/localtunnel": "^0.3.0",
"@inquirer/prompts": "^7.8.4",
"@jimp/core": "^1.6.0",
"@jimp/wasm-webp": "^1.6.0",
"@js-temporal/polyfill": "catalog:",
"@logtape/file": "catalog:",
"@logtape/logtape": "catalog:",
"@poppanator/http-constants": "^1.1.1",
"byte-encodings": "catalog:",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"enquirer": "^2.4.1",
"es-toolkit": "catalog:",
"fetch-mock": "catalog:",
"hono": "^4.8.3",
"icojs": "^0.19.5",
"inquirer": "^12.9.4",
"inquirer-toggle": "^1.0.1",
"jimp": "^1.6.0",
"ora": "^8.2.0",
"shiki": "^1.6.4",
"smol-toml": "^1.6.0",
"srvx": "^0.8.7",
"valibot": "^1.2.0"
},
"devDependencies": {
"@types/bun": "catalog:",
"@types/node": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
}
}