-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.57 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "image-monster",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "ImageMonster is a web application that allows you to remove image backgrounds using ai models.",
"author": "Oscar R.C.",
"license": "MIT",
"homepage": "https://imagemonster.oscarrc.me",
"repository": {
"type": "git",
"url": "https://github.com/oscarrc/image-monster.git"
},
"keywords": [
"image",
"processing",
"machine-learning",
"web-application",
"image-monster"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"deploy": "surge --project dist --domain imagemonster.oscarrc.me",
"predeploy": "npm run build && cp dist/index.html dist/200.html && cp dist/index.html dist/404.html"
},
"dependencies": {
"@huggingface/transformers": "^3.5.0",
"@tailwindcss/vite": "^4.1.5",
"daisyui": "^5.0.35",
"file-saver": "^2.0.5",
"framer-motion": "^12.9.4",
"jszip": "^3.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"tailwindcss": "^4.1.5"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/file-saver": "^2.0.7",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.3.1",
"vite-plugin-pwa": "^1.0.0"
}
}