-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "xstream-player",
"version": "1.12.0",
"private": true,
"license": "AGPL-3.0-only",
"author": "Janderson Lemos",
"scripts": {
"dev": "next dev",
"build": "npm run build:legacy && next build",
"build:legacy": "mkdir -p public/legacy .legacy-tmp && esbuild legacy/src/entry.ts --bundle --format=iife --global-name=XStreamLegacy --target=es2015 --outfile=.legacy-tmp/app.js --jsx=automatic --minify && babel .legacy-tmp/app.js --out-file public/legacy/app.js --config-file ./legacy/babel.config.json --minified",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"better-sqlite3": "^12.11.1",
"framer-motion": "^12.31.0",
"hls.js": "^1.6.15",
"lucide-react": "^0.563.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.5",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.17",
"esbuild": "^0.28.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"browserslist": [
"chrome >= 60"
]
}