-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "github-file-icons",
"version": "1.6.0",
"description": "A browser extension which gives different filetypes different icons to GitHub, GitLab, gitea and gogs.",
"license": "MIT",
"author": "homerchen19",
"homepage": "https://github.com/homerchen19/github-file-icons#readme",
"repository": {
"type": "git",
"url": "https://github.com/homerchen19/github-file-icons/tree/master"
},
"bugs": {
"url": "https://github.com/homerchen19/github-file-icons/issues"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress",
"lint": "eslint src/**/*.ts",
"lint:fix": "yarn run lint --fix",
"pre-commit": "lint-staged",
"prepare": "husky",
"start": "cross-env NODE_ENV=development webpack --config ./webpack.config.js --watch",
"zip": "yarn run build && zip -r build/File_Icon_For_GitHub_And_GitLab_$npm_package_version.zip build",
"zip:firefox": "yarn run build && web-ext build -s build/"
},
"dependencies": {
"atom-file-icons": "^1.0.3",
"dom-loaded": "^3.1.0",
"is-mobile": "^5.0.0",
"select-dom": "^7.1.1",
"selector-observer": "^2.1.6",
"webext-dynamic-content-scripts": "^10.0.4",
"webext-options-sync": "^4.3.0",
"webext-permission-toggle": "^5.1.0"
},
"devDependencies": {
"@types/chrome": "^0.0.289",
"@types/css-font-loading-module": "^0.0.13",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"less": "^4.1.3",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^3.2.5",
"prettier-package-json": "^2.8.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"web-ext": "^7.11.0",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-ext-reloader": "^1.1.13",
"write-file-webpack-plugin": "^4.5.1"
},
"keywords": [
"Chrome Extension",
"GitHub",
"icon"
],
"lint-staged": {
"package.json": [
"prettier-package-json --write"
],
"*.ts": [
"eslint --fix"
]
},
"packageManager": "[email protected]"
}