-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.43 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.43 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
{
"name": "@fedify/create",
"version": "2.3.0",
"description": "Create a new Fedify application",
"keywords": [
"fedify",
"activitypub",
"cli",
"init",
"fediverse"
],
"homepage": "https://fedify.dev/",
"bugs": {
"url": "https://github.com/fedify-dev/fedify/issues"
},
"license": "MIT",
"author": {
"name": "ChanHaeng Lee",
"email": "2chanhaeng@gmail.com",
"url": "https://chomu.dev/"
},
"funding": [
"https://opencollective.com/fedify",
"https://github.com/sponsors/dahlia"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fedify-dev/fedify.git",
"directory": "packages/create"
},
"type": "module",
"bin": {
"@fedify/create": "./dist/mod.js"
},
"exports": "./dist/mod.js",
"files": [
"dist/",
"package.json",
"README.md"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0"
},
"dependencies": {
"@fedify/init": "workspace:*",
"@optique/core": "catalog:",
"@optique/run": "catalog:",
"es-toolkit": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build:self": "tsdown",
"build": "pnpm --filter @fedify/create... run build:self",
"prepack": "pnpm build",
"prepublish": "pnpm build",
"pretest": "pnpm build",
"test": "node --test --experimental-transform-types 'src/**/*.test.ts'"
}
}