-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.71 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "aio-metadata",
"version": "1.35.2",
"description": "Metadata provider for Stremio",
"main": "dist/server/server.js",
"scripts": {
"generate:build-info": "node scripts/generate-build-info.js",
"predev:server": "npm run generate:build-info",
"dev": "vite",
"dev:server": "nodemon addon/server.js",
"predev:server:ts": "npm run generate:build-info",
"dev:server:ts": "nodemon --exec ts-node addon/server.ts",
"prebuild": "npm run generate:build-info",
"build": "vite build",
"build:dev": "vite build --mode development",
"prebuild:backend": "npm run generate:build-info",
"build:backend": "tsc -p tsconfig.backend.json",
"build:backend:watch": "tsc -p tsconfig.backend.json --watch",
"start:backend": "node dist/server/server.js",
"prestart:backend:ts": "npm run generate:build-info",
"start:backend:ts": "ts-node addon/server.ts",
"lint": "eslint .",
"lint:backend": "eslint addon scripts",
"lint:frontend": "eslint configure/src",
"lint:repo": "eslint eslint.config.js tailwind.config.mts vite.config.mts",
"preview": "vite preview",
"start": "npm run start:backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cedya77/aiometadata"
},
"keywords": [
"tmdb",
"stremio",
"addon",
"metadata",
"tvdb",
"MyAnimeList"
],
"author": "cedya",
"license": "Apache-2.0",
"engines": {
"node": ">=24.0.0 <25"
},
"bugs": {
"url": "https://github.com/cedya77/aiometadata/issues"
},
"homepage": "https://github.com/cedya77/aiometadata#readme",
"dependencies": {
"@cospired/i18n-iso-languages": "^4.2.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fanart-tv/api": "^1.0.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.99.0",
"axios": "^1.15.0",
"bcrypt": "^6.0.0",
"better-sqlite3": "^12.9.0",
"cheerio": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"consola": "^3.4.2",
"country-iso-2-to-3": "^1.1.0",
"csv-parse": "^6.2.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"fetch-socks": "^1.3.3",
"framer-motion": "^12.38.0",
"ioredis": "^5.10.1",
"kitsu": "^11.1.0",
"lru-cache": "^11.3.3",
"lucide-react": "^0.462.0",
"lz-string": "^1.5.0",
"name-to-imdb": "^3.0.5",
"pg": "^8.20.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"serve-favicon": "^2.5.0",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"undici": "^8.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "7.1.0-canary-705268dc-20260409",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"nodemon": "^3.1.14",
"tailwindcss": "^4.2.2",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8"
}
}