-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.58 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
{
"name": "gpthemes",
"displayName": "GPThemes - ChatGPT Customization",
"version": "1.0.0",
"description": "Transform ChatGPT's user interface with customisable accent colours, modern designs and chat bubbles.",
"repository": {
"type": "git",
"url": "https://github.com/itsmartashub/GPThemes.git"
},
"bugs": {
"url": "https://github.com/itsmartashub/GPThemes/issues"
},
"homepage": "https://github.com/itsmartashub/GPThemes/",
"scripts": {
"clean:dev": "rimraf .parcel-cache build/dev",
"clean:prod": "rimraf .parcel-cache build/prod",
"clean:zips": "rimraf build/releases",
"clean:all": "npm run clean:dev && npm run clean:prod && npm run clean:zips",
"dev:chrome": "parcel watch src/manifests/chromium-mv3/manifest.json --host localhost --dist-dir build/dev/chromium-mv3",
"dev:ff": "parcel watch src/manifests/firefox-mv2/manifest.json --host localhost --dist-dir build/dev/firefox-mv2",
"build:chrome": "parcel build src/manifests/chromium-mv3/manifest.json --dist-dir build/prod/gpthemes-chromium-mv3 --no-source-maps",
"build:ff": "parcel build src/manifests/firefox-mv2/manifest.json --dist-dir build/prod/gpthemes-firefox-mv2 --no-source-maps",
"zip": "node ./scripts/zip.js",
"build:all": "npm run clean:all && npm run build:chrome && npm run build:ff && npm run zip"
},
"author": "itsmarta",
"keywords": [
"chatgpt",
"chatgpt-4o",
"chatgpt-3.5",
"openai",
"gpt",
"gpt-4o",
"gpt-3.5",
"ai",
"chat",
"chat bubbles",
"gpt conversation",
"themes",
"chatgpt themes",
"custom accent colours",
"custom design",
"custom fonts",
"custom theming",
"custom css",
"theme enhancement",
"ui customization",
"style",
"style chatgpt",
"chatgpt themes",
"chatgpt enhancement",
"modern themes",
"minimalistic",
"gpthemes",
"modern ui",
"visual experience",
"user interface makeover",
"personalization",
"customization",
"stylish design",
"refreshed appearance",
"visual upgrade",
"user-friendly",
"css injection",
"web design makeover",
"plugin",
"addon",
"extension",
"browser extension",
"chrome",
"chrome extension",
"chrome web store",
"firefox",
"firefox addons",
"foss",
"opensource"
],
"license": "GPL-3.0",
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@parcel/transformer-sass": "^2.12.0",
"adm-zip": "^0.5.16",
"parcel": "^2.12.0",
"postcss": "^8.4.41",
"postcss-discard-unused": "^7.0.2",
"postcss-preset-env": "^10.0.2",
"postcss-transform": "^1.0.0",
"rimraf": "^6.0.1",
"webextension-polyfill": "^0.12.0"
},
"browserslist": "> 1%, last 2 versions, not dead"
}