types and forgejo

This commit is contained in:
Benjamin Palko 2025-03-14 12:41:46 -04:00
parent 78bf243074
commit 39a082ecd0
3 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,3 @@
[install.scopes]
# registry with token
"@atlas" = { token = "$GITEA_TOKEN", url = "https://git.palko.ca/api/packages/Pantheon/npm/" }
"@atlas" = { token = "$FORGEJO_TOKEN", url = "https://git.palko.ca/api/packages/Pantheon/npm/" }

View file

@ -1,7 +1,7 @@
{
"name": "@atlas/svelte",
"type": "module",
"version": "1.0.3-alpha",
"version": "1.0.4-alpha",
"exports": {
".": {
"types": "./dist/index.d.ts",
@ -10,6 +10,10 @@
"./components": {
"types": "./dist/components/index.d.ts",
"svelte": "./dist/components/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
}
},
"types": "./dist/index.d.ts",

View file

@ -1,2 +1 @@
export * from './components/';
export * from './types/';
export {};