forked from netux/grayjay-source-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (44 loc) · 1.66 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
{
"name": "grayjay-source-youtube-with-dearrow",
"version": "177.0.0",
"description": "One of the biggest video platforms owned by Google - now with DeArrow support",
"type": "module",
"main": "YoutubeScript.js",
"scripts": {
"build:standard": "cross-env SOURCE_RELEASE_TYPE=standard rollup --config config/rollup.config.js",
"build:uses-alternative-metadata": "cross-env SOURCE_RELEASE_TYPE=uses-alternative-metadata rollup --config config/rollup.config.js",
"build:all": "npm run build:standard && npm run build:uses-alternative-metadata",
"watch:standard": "npm run build:standard -- --watch",
"watch:uses-alternative-metadata": "npm run build:uses-alternative-metadata -- --watch",
"start:standard": "concurrently --names \"build,server\" \"npm run watch:standard\" \"http-server ./dist/standard --cache=-1 --port=11338\"",
"start:uses-alternative-metadata": "concurrently --names \"build,server\" \"npm run watch:uses-alternative-metadata\" \"http-server ./dist/uses-alternative-metadata --cache=-1 --port=11338\""
},
"engines": {
"node": "^18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/netux/grayjay-source-youtube.git"
},
"keywords": [
"Grayjay",
"YouTube",
"DeArrow"
],
"contributors": [
"FUTO",
"netux"
],
"bugs": {
"url": "https://github.com/netux/grayjay-source-youtube/issues"
},
"homepage": "https://github.com/netux/grayjay-source-youtube#readme",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"http-server": "^14.1.1",
"rollup": "^4.14.0",
"rollup-plugin-copy": "^3.5.0"
}
}