-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 840 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 840 Bytes
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
{
"name": "youtube-local-library",
"version": "1.0.0",
"description": "Create YouTube playlists locally",
"main": "index.html",
"repository": {
"url": "https://github.com/nikitahl/youtube-local-library",
"type": "git"
},
"author": "Nikita Hlopov",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint .",
"build": "gulp --development",
"build-prod": "gulp --production",
"watch": "gulp watch --development",
"start": "web-ext run"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"eslint": "^9.8.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-mode": "^1.1.0",
"gulp-rename": "^2.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2"
}
}