feat(docs): 📝 Add initial README and docs

This commit is contained in:
Jesse Wierzbinski 2024-05-13 17:58:03 -10:00
parent 0cb9aa1e35
commit ef76ee4a5c
No known key found for this signature in database
6 changed files with 190 additions and 0 deletions

20
federation/biome.json Normal file
View file

@ -0,0 +1,20 @@
{
"$schema": "https://biomejs.dev/schemas/1.6.4/schema.json",
"organizeImports": {
"enabled": true,
"ignore": ["node_modules", "dist"]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
},
"ignore": ["node_modules", "dist"]
},
"formatter": {
"enabled": true,
"indentStyle": "space",
"indentWidth": 4,
"ignore": ["node_modules", "dist"]
}
}

63
federation/package.json Normal file
View file

@ -0,0 +1,63 @@
{
"name": "@lysand-org/federation",
"displayName": "Lysand Federation",
"version": "3.0.0",
"author": {
"email": "jesse.wierzbinski@lysand.org",
"name": "Jesse Wierzbinski (CPlusPatch)",
"url": "https://cpluspatch.com"
},
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/lysand-org/api.git",
"directory": "federation"
},
"bugs": {
"url": "https://github.com/lysand-org/api/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Jesse Wierzbinski",
"email": "jesse.wierzbinski@lysand.org",
"url": "https://cpluspatch.com"
}
],
"maintainers": [
{
"name": "Jesse Wierzbinski",
"email": "jesse.wierzbinski@lysand.org",
"url": "https://cpluspatch.com"
}
],
"description": "Type definitions for Lysand Federation, with validators.",
"categories": ["Other"],
"type": "module",
"engines": {
"bun": ">=1.1.8"
},
"exports": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/lysand"
},
"homepage": "https://lysand.org",
"keywords": [
"lysand",
"federation",
"api",
"typescript",
"zod",
"validation"
],
"packageManager": "bun@1.1.8",
"devDependencies": {
"@biomejs/biome": "^1.7.3"
},
"trustedDependencies": ["@biomejs/biome"]
}