-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.72 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
{
"name": "deepstyled",
"displayName": "deepstyled - Deepseek Customization",
"version": "1.0.0",
"description": "Transform DeepSeek's user interface with customisable accent colours, modern designs and chat bubbles.",
"repository": {
"type": "git",
"url": "https://github.com/itsmartashub/deepstyled.git"
},
"bugs": {
"url": "https://github.com/itsmartashub/deepstyled/issues"
},
"homepage": "https://github.com/itsmartashub/deepstyled/",
"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 --config @parcel/config-webextension",
"dev:ff": "parcel watch src/manifests/firefox-mv2/manifest.json --host localhost --dist-dir build/dev/firefox-mv2 --config @parcel/config-webextension",
"build:chrome": "parcel build src/manifests/chromium-mv3/manifest.json --dist-dir build/prod/deepstyled-chromium-mv3 --no-source-maps --config @parcel/config-webextension",
"build:ff": "parcel build src/manifests/firefox-mv2/manifest.json --dist-dir build/prod/deepstyled-firefox-mv2 --no-source-maps --config @parcel/config-webextension",
"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": [
"ai",
"chat",
"deepseek",
"chat bubbles",
"deepseek conversation",
"themes",
"deepseek themes",
"custom accent colours",
"custom design",
"custom fonts",
"custom theming",
"custom css",
"theme enhancement",
"ui customization",
"style",
"style deepseek",
"deepseek themes",
"deepseek enhancement",
"modern themes",
"minimalistic",
"deepstyled",
"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.13.3",
"@parcel/transformer-sass": "^2.13.3",
"adm-zip": "^0.5.16",
"parcel": "^2.13.3",
"postcss": "^8.5.1",
"postcss-discard-unused": "^7.0.3",
"postcss-preset-env": "^10.1.3",
"postcss-transform": "^1.0.0",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"webextension-polyfill": "^0.12.0"
},
"browserslist": "> 1%, last 2 versions, not dead"
}