feat: add image-engine and ai stub packages

This commit is contained in:
Siddharth Kumar Sah
2026-03-22 02:44:46 +08:00
parent f210de1a13
commit 19e48203bb
7 changed files with 58 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"name": "@stirling-image/ai",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@stirling-image/shared": "workspace:*"
},
"devDependencies": {
"typescript": "^5.7.0"
}
}
+10
View File
@@ -0,0 +1,10 @@
rembg[cpu]==2.0.62
realesrgan==0.3.0
lama-cleaner==1.2.5
paddleocr==2.9.1
paddlepaddle==3.0.0
mediapipe==0.10.21
onnxruntime==1.20.1
numpy==1.26.4
Pillow==11.1.0
opencv-python-headless==4.10.0.84
+1
View File
@@ -0,0 +1 @@
export const AI_VERSION = "0.0.1";
+5
View File
@@ -0,0 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "./dist", "rootDir": "./src" },
"include": ["src/**/*"]
}
+18
View File
@@ -0,0 +1,18 @@
{
"name": "@stirling-image/image-engine",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@stirling-image/shared": "workspace:*"
},
"devDependencies": {
"typescript": "^5.7.0"
}
}
+1
View File
@@ -0,0 +1 @@
export const IMAGE_ENGINE_VERSION = "0.0.1";
+5
View File
@@ -0,0 +1,5 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": { "outDir": "./dist", "rootDir": "./src" },
"include": ["src/**/*"]
}