-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "osnova-dark-theme",
"version": "11.2.0",
"description": "Userscript bringing dark theme to Osnova platform. Contains multiple subthemes and modules.",
"main": "webpack.config.js",
"type": "commonjs",
"scripts": {
"build": "webpack --env production",
"dev": "webpack --env development",
"resources": "postcss resources/*.css -d build/",
"lint": "eslint src/ --ext .js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serguun42/OsnovaDarkTheme.git"
},
"keywords": [
"webpack",
"userscript",
"greasemonkey",
"tampermonkey",
"violentmonkey",
"darktheme",
"osnova"
],
"author": "serguun42",
"license": "GNU GPL v3",
"bugs": {
"url": "https://github.com/serguun42/OsnovaDarkTheme/issues"
},
"homepage": "https://github.com/serguun42/OsnovaDarkTheme#readme",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"@serguun42/webpack-userscript-plugin": "^1.0.1",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"cssnano": "^5.1.14",
"postcss": "^8.4.19",
"postcss-cli": "^10.1.0",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
}
}