tangled
alpha
login
or
join now
graham.systems
/
cistern
3
fork
atom
Encrypted, ephemeral, private memos on atproto
3
fork
atom
overview
issues
pulls
pipelines
chore(deno): add package metadata fields
graham.systems
4 months ago
bb102caf
668022c5
verified
This commit was signed with the committer's
known signature
.
graham.systems
SSH Key Fingerprint:
SHA256:Fvaam8TgCBeBlr/Fo7eA6VGAIAWmzjwUqUTw5o6anWA=
+25
5 changed files
expand all
collapse all
unified
split
packages
consumer
deno.jsonc
crypto
deno.jsonc
lexicon
deno.jsonc
producer
deno.jsonc
shared
deno.jsonc
+5
packages/consumer/deno.jsonc
···
1
1
{
2
2
"name": "@cistern/consumer",
3
3
+
"version": "1.0.0",
4
4
+
"license": "MIT",
3
5
"exports": {
4
6
".": "./mod.ts"
7
7
+
},
8
8
+
"publish": {
9
9
+
"exclude": ["*.test.ts"]
5
10
},
6
11
"imports": {
7
12
"@atcute/atproto": "npm:@atcute/atproto@^3.1.9",
+5
packages/crypto/deno.jsonc
···
1
1
{
2
2
"name": "@cistern/crypto",
3
3
+
"version": "1.0.0",
4
4
+
"license": "MIT",
3
5
"exports": {
4
6
".": "./mod.ts"
7
7
+
},
8
8
+
"publish": {
9
9
+
"exclude": ["*.test.ts"]
5
10
},
6
11
"imports": {
7
12
"@noble/ciphers": "jsr:@noble/ciphers@^2.0.1",
+5
packages/lexicon/deno.jsonc
···
1
1
{
2
2
"name": "@cistern/lexicon",
3
3
+
"version": "1.0.0",
4
4
+
"license": "MIT",
3
5
"exports": {
4
6
".": "./mod.ts"
7
7
+
},
8
8
+
"publish": {
9
9
+
"exclude": ["*.test.ts"]
5
10
},
6
11
"tasks": {
7
12
"generate": "deno run --allow-env --allow-sys --allow-read --allow-write npm:@atcute/lex-cli generate -c lex.config.ts"
+5
packages/producer/deno.jsonc
···
1
1
{
2
2
"name": "@cistern/producer",
3
3
+
"version": "1.0.0",
4
4
+
"license": "MIT",
3
5
"exports": {
4
6
".": "./mod.ts"
7
7
+
},
8
8
+
"publish": {
9
9
+
"exclude": ["*.test.ts"]
5
10
},
6
11
"imports": {
7
12
"@atcute/atproto": "npm:@atcute/atproto@^3.1.9",
+5
packages/shared/deno.jsonc
···
1
1
{
2
2
"name": "@cistern/shared",
3
3
+
"version": "1.0.0",
4
4
+
"license": "MIT",
3
5
"exports": {
4
6
".": "./mod.ts"
7
7
+
},
8
8
+
"publish": {
9
9
+
"exclude": ["*.test.ts"]
5
10
},
6
11
"imports": {
7
12
"@atcute/client": "npm:@atcute/client@^4.0.5",