forked from misa198/octotree-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "octotree-theme",
"description": "A Browser Extension which gives different filetypes different icons, and code color theme to GitHub and Octotree for free.",
"license": "BSD-2-Clause Simplified License",
"author": "Thanh Vu",
"homepage": "https://octotree-theme.web.app",
"repository": {
"type": "git",
"url": "https://github.com/misa198/octotree-theme/tree/master"
},
"bugs": {
"url": "https://github.com/misa198/octotree-theme/issues"
},
"version": "1.4.3",
"scripts": {
"pre-commit": "lint-staged",
"build:chromium-v3": "rm -rf build/chromium-v3 && cross-env PLATFORM=chromium-v3 webpack --config webpack.config.js",
"build:chromium-v2": "rm -rf build/chromium-v2 && cross-env PLATFORM=chromium-v2 webpack --config webpack.config.js",
"build:firefox": "rm -rf build/firefox && cross-env PLATFORM=firefox webpack --config webpack.config.js",
"build": "npm run build:chromium-v3 && npm run build:firefox && npm run build:chromium-v2",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"generate-code-themes": "node tools/generate.js && prettier --write src/scripts/constants",
"zip:chromium-v3": "cross-env PLATFORM=chromium-v3 node tools/zip.js",
"zip:chromium-v2": "cross-env PLATFORM=chromium-v2 node tools/zip.js",
"zip:firefox": "cross-env PLATFORM=firefox node tools/zip.js",
"zip": "npm run zip:chromium-v3 && npm run zip:chromium-v2 && npm run zip:firefox"
},
"dependencies": {
"adm-zip": "^0.5.9",
"capitalize": "^2.0.4",
"dom-loaded": "^2.0.0",
"fancy-log": "^2.0.0",
"file-icons-js": "^1.1.0",
"is-mobile": "^3.0.0",
"select-dom": "^7.1.1",
"selector-observer": "^2.1.6",
"webext-domain-permission-toggle": "^2.1.0",
"webext-dynamic-content-scripts": "^7.1.1",
"webext-options-sync": "^2.0.1"
},
"devDependencies": {
"@types/capitalize": "^2.0.0",
"@types/chrome": "^0.0.179",
"@types/css-font-loading-module": "^0.0.7",
"@types/firefox-webext-browser": "^94.0.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^6.2.0",
"html-minimizer-webpack-plugin": "^3.5.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^2.6.0",
"path": "^0.12.7",
"prettier": "^2.2.1",
"prettier-package-json": "^2.1.3",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"uglify-js": "^3.16.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"keywords": [
"Chrome Extension",
"Octotree",
"GitHub",
"icon"
],
"lint-staged": {
"package.json": [
"prettier-package-json --write"
],
"*.ts": [
"eslint --fix"
]
}
}