Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
ducan-ne committed Aug 25, 2024
0 parents commit eecff37
Show file tree
Hide file tree
Showing 18 changed files with 7,967 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.DS_Store
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Preview</title>
</head>
<body>
<div id="image-converter"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
44 changes: 44 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "remove-bg",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "bunx --bun vite --port 5175",
"build": "vite build",
"preview": "vite preview",
"up": "bunx --bun vite build && wrangler pages deploy ./dist --branch main --project-name image-converter"
},
"dependencies": {
"@huggingface/transformers": "3.0.0-alpha.9",
"@nextui-org/react": "^2.4.6",
"@nextui-org/theme": "^2.2.9",
"@xenova/transformers": "^2.15.0",
"birpc": "^0.2.17",
"buffer": "^6.0.3",
"framer-motion": "^11.3.24",
"lucide-react": "^0.427.0",
"motion-number": "^0.1.6",
"p-queue": "^8.0.1",
"react": "18.3.0-canary-b30030471-20240117",
"react-aria-components": "^1.3.1",
"react-dom": "18.3.0-canary-b30030471-20240117",
"remeda": "^2.11.0",
"sonner": "^1.5.0",
"valtio": "^1.13.2"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^0.0.0-experimental-334f00b-20240725",
"postcss": "^8.4.41",
"tailwindcss": "3.4.9",
"tailwindcss-react-aria-components": "^1.1.4",
"typescript": "^5.5.4",
"vite": "5.4.1",
"vite-plugin-css-injected-by-js": "1.4.0"
},
"resolutions": {}
}
Loading

0 comments on commit eecff37

Please sign in to comment.