-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.48 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
{
"name": "@serifpersia/dango",
"version": "2.4.8",
"description": "A web application for watching anime.",
"main": "orchestrator.js",
"repository": {
"type": "git",
"url": "git+https://github.com/serifpersia/dango.git"
},
"bin": {
"dango": "orchestrator.js"
},
"engines": {
"node": ">=22.5.0"
},
"scripts": {
"install:client": "npm install --prefix client",
"build": "npm run build --prefix client && npm run build --prefix server",
"start": "node orchestrator.js prod",
"dev": "node orchestrator.js dev",
"client": "npm start --prefix client",
"server": "npm run start --prefix server",
"preview": "node orchestrator.js prod",
"migrate": "ts-node --project server/tsconfig.json server/src/migration/migrate.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint --prefix client && npm run lint --prefix server",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"update-version": "node update-version.js"
},
"files": [
"orchestrator.js",
"client/dist",
"server/dist",
"server/.env",
"LICENSE",
"README.md",
"package.json"
],
"keywords": [
"anime",
"react",
"express",
"typescript",
"streaming",
"cli"
],
"author": "",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"type": "commonjs",
"dependencies": {
"@octokit/auth-oauth-device": "^8.0.3",
"@octokit/rest": "^22.0.1",
"@xhayper/discord-rpc": "^1.3.4",
"axios": "^1.15.1",
"axios-retry": "^4.5.0",
"cheerio": "^1.2.0",
"chokidar": "^5.0.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^17.4.2",
"express": "^5.1.0",
"freekeys": "^0.0.4",
"got-scraping": "^3.2.9",
"multer": "^2.0.2",
"node-cache": "^5.1.2",
"pino": "^10.3.1",
"pino-pretty": "^13.1.1",
"xml2js": "^0.6.2"
},
"overrides": {
"encoding-sniffer": "^1.0.2",
"esbuild": "^0.28.1",
"undici": "^8.5.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.2",
"@types/express": "^5.0.0",
"@types/multer": "^2.1.0",
"@types/node": "^22.5.0",
"@types/xml2js": "^0.4.14",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.18.1"
}
}