commit d1b7fc6107b0b0d06ce785504ab4d8878ceab519 Author: Madeorsk Date: Sun Mar 30 12:27:20 2025 +0200 Setup proxy package. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7514d0a --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# IDEA + +.idea/ +*.iml + +# JS library + +coverage/ +lib/ +.parcel-cache/ +.yarn/ +.yarnrc* +yarn-error.log +.pnp* +node_modules/ + +yarn.lock diff --git a/README.md b/README.md new file mode 100644 index 0000000..7abcea8 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +

+ + + Sharkitek logo + + +

+

+ Sharkitek +

+ +

+ Documentation | + Website +

+ +

+ TypeScript library for well-designed model architectures +

+ +## 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. diff --git a/package.json b/package.json new file mode 100644 index 0000000..176f473 --- /dev/null +++ b/package.json @@ -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" +}