-
Notifications
You must be signed in to change notification settings - Fork 566
/
package.json
51 lines (51 loc) · 1.61 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
{
"name": "return-youtube-dislike",
"version": "3.0.0-17",
"description": "Chrome extension to return youtube dislikes",
"main": "ryd.content-script.js",
"scripts": {
"start": "echo To build for development, please use \"npm run dev\". To build for production, please use \"npm run build\".",
"dev": "webpack --mode=production --watch",
"build": "webpack --mode=production",
"test": "jest",
"build:safari": "webpack --mode=production && xcrun safari-web-extension-converter Extensions/combined/dist/safari --project-location Extensions/combined/dist --bundle-identifier com.returnyoutubedislike.safari-ext --force",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anarios/return-youtube-dislike.git"
},
"keywords": [
"youtube",
"dislike",
"return",
"extension"
],
"author": "Anarios",
"bugs": {
"url": "https://github.com/Anarios/return-youtube-dislike/issues"
},
"homepage": "https://github.com/Anarios/return-youtube-dislike#readme",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/runtime": "^7.23.5",
"babel-loader": "^9.1.3",
"babel-plugin-rewire": "^1.2.0",
"copy-webpack-plugin": "^11.0.0",
"filemanager-webpack-plugin": "^8.0.0",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^15.2.0",
"prettier": "^3.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"prettier": {
"printWidth": 120
}
}