-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.94 KB
/
package.json
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
{
"name": "animestream",
"version": "1.0.1",
"description": "just another platfrom to stream and download anime",
"type": "commonjs",
"main": "dist/Main/Main.js",
"scripts": {
"test": "npm run build && npm start",
"build": "rimraf dist/ && tsc",
"start": "electron .",
"dev": "concurrently tsc -w && electron .",
"package": "npm run build && electron-forge package",
"compile": "innosetup-compiler setup.iss --verbose",
"compile:pack": "npm run package && npm run compile",
"make": "npm run build && electron-forge make",
"make-msi": "npm run make -- --targets=\"@electron-forge/maker-wix\"",
"format": "prettier --write \"**/*.{ts,css,html}\""
},
"keywords": [
"anime",
"streaming",
"anime app",
"anime downloader"
],
"author": "FrostNova",
"repository": {
"type": "git",
"url": "https://github.com/frostnova721/AnimeStream"
},
"license": "GPL-3.0",
"dependencies": {
"anilist-node": "^1.14.0",
"axios": "^1.5.1",
"cheerio": "^1.0.0-rc.12",
"crypto-js": "^4.2.0",
"custom-electron-titlebar": "^4.2.7",
"electron-reload": "^2.0.0-alpha.1",
"electron-squirrel-startup": "^1.0.0",
"fluent-ffmpeg": "^2.1.2",
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"hls.js": "^1.4.12",
"rimraf": "^5.0.5",
"typescript": "^5.3.2"
},
"devDependencies": {
"@electron-forge/cli": "^6.4.2",
"@electron-forge/maker-deb": "^6.4.2",
"@electron-forge/maker-rpm": "^6.4.2",
"@electron-forge/maker-squirrel": "^6.4.2",
"@electron-forge/maker-wix": "^6.4.2",
"@electron-forge/maker-zip": "^6.4.2",
"@electron-forge/plugin-auto-unpack-natives": "^6.4.2",
"concurrently": "^9.0.1",
"electron": "^27.0.2",
"innosetup": "^6.0.5"
}
}