-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.73 KB
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
{
"name": "animouto",
"version": "3.0.1",
"displayName": "AniMouto",
"author": "Nicholas \"TehNut\" Ignoffo",
"description": "Let an imouto enhance your AniList experience.",
"license": "MIT",
"type": "module",
"scripts": {
"build:chromium": "vite build --mode chromium",
"build:firefox": "vite build --mode firefox",
"watch:chromium": "vite build --watch --mode chromium",
"watch:firefox": "vite build --watch --mode firefox",
"serve:chromium": "web-ext run -t chromium --start-url \"https://studio.apollographql.com/sandbox/explorer?endpoint=https://graphql.anilist.co\" --source-dir ./dist/chromium",
"serve:firefox": "web-ext run --start-url \"https://studio.apollographql.com/sandbox/explorer?endpoint=https://graphql.anilist.co\" --source-dir ./dist/firefox",
"dev:chromium": "concurrently --restart-tries 5 --restart-after 5000 -c \"bgBlue.bold,bgMagenta.bold\" \"npm:watch:chromium\" \"npm:serve:chromium\"",
"dev:firefox": "concurrently --restart-tries 5 --restart-after 5000 -c \"bgBlue.bold,bgMagenta.bold\" \"npm:watch:firefox\" \"npm:serve:firefox\"",
"package:chromium": "cross-env zip=1 vite build --mode chromium",
"package:firefox": "cross-env zip=1 vite build --mode firefox",
"check": "svelte-check --tsconfig ./tsconfig.json",
"codegen:graphql": "graphql-codegen"
},
"dependencies": {
"@floating-ui/dom": "1.5.3",
"@fortawesome/free-regular-svg-icons": "6.4.2",
"@fortawesome/free-solid-svg-icons": "6.4.2",
"@tailwindcss/typography": "0.5.10",
"@urql/exchange-graphcache": "6.3.3",
"@urql/svelte": "4.0.4",
"graphql": "16.8.1",
"graphql-tag": "2.12.6",
"history": "5.3.0",
"jwt-decode": "3.1.2",
"svelte-fa": "3.0.4",
"svelte-lazy": "1.2.2",
"svelte-navigator": "3.2.2",
"svelte-previous": "2.1.4",
"svelte-ripple": "0.1.1",
"timeago.js": "4.0.2",
"webext-storage-cache": "6.0.0",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typed-document-node": "5.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/urql-introspection": "3.0.0",
"@samrum/vite-plugin-web-extension": "2.1.1",
"@sveltejs/vite-plugin-svelte": "2.4.6",
"@tsconfig/svelte": "5.0.2",
"@types/webextension-polyfill": "0.10.5",
"@types/yazl": "2.4.4",
"autoprefixer": "10.4.16",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"postcss": "8.4.31",
"svelte": "^3.59.2",
"svelte-check": "3.5.2",
"svelte-preprocess": "5.0.4",
"tailwindcss": "3.3.3",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vite": "4.5.0",
"web-ext": "7.3.1",
"yazl": "2.5.1"
}
}