Setup proxy package.

This commit is contained in:
Madeorsk 2025-03-30 12:27:20 +02:00
commit d1b7fc6107
Signed by: Madeorsk
GPG key ID: 677E51CA765BB79F
3 changed files with 58 additions and 0 deletions

17
.gitignore vendored Normal file
View file

@ -0,0 +1,17 @@
# IDEA
.idea/
*.iml
# JS library
coverage/
lib/
.parcel-cache/
.yarn/
.yarnrc*
yarn-error.log
.pnp*
node_modules/
yarn.lock

23
README.md Normal file
View file

@ -0,0 +1,23 @@
<p align="center">
<a href="https://code.zeptotech.net/Sharkitek/Core">
<picture>
<img alt="Sharkitek logo" width="200" src="https://code.zeptotech.net/Sharkitek/Core/raw/branch/main/logo.svg" />
</picture>
</a>
</p>
<h1 align="center">
Sharkitek
</h1>
<h4 align="center">
<a href="https://code.zeptotech.net/Sharkitek/Core">Documentation</a> |
<a href="https://code.zeptotech.net/Sharkitek/Core">Website</a>
</h4>
<p align="center">
TypeScript library for well-designed model architectures
</p>
## Proxy
This package is a proxy package, which just adds [`@sharkitek/core`](https://www.npmjs.com/package/@sharkitek/core) to your project. You can directly use [`@sharkitek/core`](https://www.npmjs.com/package/@sharkitek/core) and you should be following this package if you seek more information or new versions.

18
package.json Normal file
View file

@ -0,0 +1,18 @@
{
"name": "sharkitek",
"version": "4.0.0",
"description": "Sharkitek library proxy package, see @sharkitek/core",
"repository": "https://code.zeptotech.net/Sharkitek/Proxy",
"author": {
"name": "Madeorsk",
"email": "m@deor.sk"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sharkitek/core": "^4"
},
"packageManager": "yarn@4.8.1"
}