Go to file
2022-09-23 09:52:00 -04:00
.github/workflows +tea.xyz (#128) 2022-09-23 09:52:00 -04:00
.vscode infra 2022-08-01 15:43:40 -04:00
projects +tea.xyz (#128) 2022-09-23 09:52:00 -04:00
scripts +tea.xyz (#128) 2022-09-23 09:52:00 -04:00
import-map.json infra 2022-08-01 15:43:40 -04:00
README.md making things relocatable (#122) 2022-09-08 16:40:35 -04:00
src infra 2022-08-01 15:43:40 -04:00
tsconfig.json infra 2022-08-01 15:43:40 -04:00

tea

tea is a decentralized package manager—this requires a decentralized package registry. Were releasing our testnet later this year. In the meantime the pantry is our stop-gap solution.

Entry Requirements

This pantry only accepts devtools that we feel confident we can maintain. Quality and robustness are our goals. If you want other tools you can maintain your own pantry and well build the binaries.

Philosophy

Fundamentally we're coming at this from the perspective that the maintainer should decide how their software is distributed and were making the tools so they can do that in cross platform way.

This repo is a bootstrap and is stubs.

Naming

We use fully-qualified names. Naming is hard, and the world has spent a while trying to get it right. In this kind of domain the correct choice is to namespace.

Coming Soon

Maintaining Your Own Pantry

We will build binaries for forks of this repository and then surface the package.ymls you maintain to users of tea/cli. This feature is coming soon and will require signed commits and that you come to our Discord and say hi.

Hosting and Maintaining Your Own package.yml

If you have a website you can host your own package.yml there and we will build binaries for you. This feature is coming soon and will require signed, versioned tags and signed source tarballs.

Packaging Knowledgebase

Our wiki is our knowledgebase. Fill it with the fruits of your knowledge. Please keep it tidy.

Dependencies

Project Version
deno.land ^1.23
tea.xyz ^0

Build All

scripts/ls.ts | xargs scripts/sort.ts | xargs scripts/build.ts

Typecheck

for x in scripts/*.ts src/app.ts; do
  deno check --import-map=$SRCROOT/import-map.json $x
done