-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 948 Bytes
/
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
{
"name": "dark-mode-enabler",
"version": "1.1.0",
"description": "Chrome extension designed to help you enable Dark Mode or at least, invert colors to release your eyes from the white light of the screen.",
"main": "extension/content-script.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"predeploy": "vite build",
"deploy": "gh-pages -d dist"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/codesandtags/dark-mode-extension/blob/main/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/codesandtags/dark-mode-extension.git"
},
"keywords": [
"chrome-extension",
"dark-mode"
],
"author": "codesandtags",
"license": "MIT",
"dependencies": {
"vite": "^5.0.6"
},
"devDependencies": {
"gh-pages": "^6.1.0"
},
"homepage": "https://codesandtags.github.io/dark-mode-extension/"
}