forked from unijump-ai/unijump-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 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
{
"name": "unijump",
"version": "0.7.1",
"displayName": "UniJump - Shortcut for ChatGPT",
"description": "Shortcut for ChatGPT with Superpowers",
"author": "Doga Genc <[email protected]>",
"scripts": {
"bump:patch": "npm version patch -m 'Upgrade version to v%s'",
"bump:minor": "npm version minor -m 'Upgrade version to v%s'",
"bump:major": "npm version major -m 'Upgrade version to v%s'",
"build:mv2": "MANIFEST_VERSTION=2 vite build",
"build:mv3": "MANIFEST_VERSION=3 vite build",
"watch:mv2": "MANIFEST_VERSION=2 vite build --mode development --watch",
"watch:mv3": "MANIFEST_VERSION=3 vite build --mode development --watch",
"dev": "vite --port=2222",
"release": "npm run build:mv2 && npm run build:mv3 && npm run archive",
"archive": "node --experimental-specifier-resolution=node --loader ts-node/esm ./build/archive.ts",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/mv2",
"serve:chrome": "web-ext run -t chromium --start-url \"https://google.com\" --source-dir ./dist/mv3",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"license": "MIT",
"devDependencies": {
"@samrum/vite-plugin-web-extension": "^3.0.0",
"@steeze-ui/heroicons": "^2.2.1",
"@steeze-ui/svelte-icon": "^1.3.2",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/archiver": "^5.3.1",
"@types/chrome": "^0.0.206",
"@types/lodash.omit": "^4.5.7",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^9.0.0",
"@types/webextension-polyfill": "^0.9.2",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte3": "^4.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.5",
"svelte": "^3.50.0",
"svelte-check": "^3.0.1",
"svelte-highlight": "^7.1.2",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.9.4",
"vite": "~4.0.3",
"vite-imagetools": "^4.0.18",
"vite-plugin-svelte-svg": "^2.2.1",
"web-ext": "^7.4.0"
},
"dependencies": {
"@dogagenc/svelte-markdown": "^0.2.4",
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"lodash.omit": "^4.5.0",
"svelte-portal": "^2.2.0",
"ua-parser-js": "^1.0.33",
"uuid": "^9.0.0",
"webextension-polyfill": "^0.10.0"
},
"type": "module"
}