mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-04-18 03:00:22 -04:00
* fix: relative path on hubble docs not resolving to contributing.md * add: initial table structure of the docs * remove: link on first column * add: docs/Ed25519Signer.md * fix: wrong links in Ed25519Signer.md * fix: wrong link again * add: constructor to ed25519signer.md * add docs/Eip712Signer.md * update: replace ambiguous description with TODO * update: code example on readme * add: a comment about neverthrow * add: js docs to interact with hub * update: wrong import on docs * remove: make Data and Amp functions * update: clarify the eddsa private key part * update: move signer docs to readme * update: readme table * fix: wrong path * add: docs for eip signer but in js * remove: ambiguous descriptions * add: doc generation with TypeDoc * add: docs for ed25519 signer * update: build first before running docs * update: only use packages/js for typedoc entrypoint * remove: function name in tsdoc comments * update: move examples up for clarity * add: typedoc.json * add: description for properties of signers * update: link to classes in readme * update: move make message explanation above * remove: ambiguous description in readme * add: a line in contributing.md about generating docs for packages/* * remove: old docs * update: recompiled docs and add plugin on typedoc.json * add: description to sign verification Co-authored-by: Anthony D'Addeo <tony@tavour.com> * update: use yarn instead of npm Co-authored-by: Anthony D'Addeo <tony@tavour.com> * update: disable typedoc source * update: contributing.md packages/* to packages/js * update: TODO to TODO DOCS * fix: eip712 signer not rendering properly * add: docs to message builders * add: docs to client --------- Co-authored-by: Anthony D'Addeo <tony@tavour.com>
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
{
|
|
"name": "hubble",
|
|
"description": "A monorepo for the Farcaster Hub",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"packageManager": "yarn@1.22.19",
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "./node_modules/.bin/turbo run build",
|
|
"clean": "./node_modules/.bin/turbo run clean",
|
|
"dev": "./node_modules/.bin/turbo run dev --parallel",
|
|
"test": "./node_modules/.bin/turbo run test",
|
|
"test:ci": "./node_modules/.bin/turbo run test:ci -- --passWithNoTests",
|
|
"lint": "./node_modules/.bin/turbo run lint --parallel",
|
|
"prepare": "husky install",
|
|
"docs": "./node_modules/.bin/turbo run build && typedoc"
|
|
},
|
|
"engines": {
|
|
"npm": ">=8.0.0",
|
|
"node": "^18.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/changelog-git": "^0.1.14",
|
|
"@changesets/cli": "^2.26.0",
|
|
"@swc/cli": "^0.1.57",
|
|
"@swc/core": "^1.3.24",
|
|
"@swc/jest": "^0.2.24",
|
|
"@types/jest": "^29.0.2",
|
|
"@types/node": "^18.7.14",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.0.3",
|
|
"lint-staged": "^13.0.3",
|
|
"rimraf": "^4.1.2",
|
|
"ts-node": "^10.9.1",
|
|
"tsup": "^6.5.0",
|
|
"turbo": "1.7.3",
|
|
"typedoc": "^0.23.25",
|
|
"typedoc-plugin-markdown": "^3.14.0",
|
|
"typescript": "^5.0.0-beta"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": "eslint --cache --fix"
|
|
}
|
|
}
|