Fix package names

This commit is contained in:
Samir Menon
2023-02-07 18:55:38 -08:00
parent b6a71a99a8
commit b4fa467e3e
5 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import { Client } from '@blyss/client-sdk';
import { Client } from '@blyss/sdk';
async function main() {
const client = new Client('<YOUR API KEY HERE>');

View File

@@ -1,7 +1,7 @@
{
"type": "module",
"dependencies": {
"@blyss/client-sdk": "latest"
"@blyss/sdk": "latest"
},
"devDependencies": {
"ts-node": "^10.9.1",

View File

@@ -10,7 +10,7 @@
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.4",
"@blyss/client-sdk": "latest"
"@blyss/sdk": "latest"
},
"scripts": {
"start": "react-scripts start",

View File

@@ -1,5 +1,5 @@
import './App.css';
import { Bucket, Client } from '@blyss/client-sdk';
import { Bucket, Client } from '@blyss/sdk';
import React, { ReactNode } from 'react';
// This function gets called only on the first query

View File

@@ -4,7 +4,7 @@ description = "Bridge crate between the spiral-rs-client library and the JS clie
version = "0.1.0"
authors = ["Samir Menon <samir@blyss.dev>"]
license = "MIT"
repository = "https://github.com/blyssprivacy/client-sdk"
repository = "https://github.com/blyssprivacy/sdk"
categories = ["wasm"]
readme = "README.md"
edition = "2018"