-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.61 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
{
"name": "tachikoma",
"private": true,
"version": "0.1.0",
"description": "Automatically sync what you read on MangaDex across many services like MyAnimeList, Anilist, Kitsu and more.",
"scripts": {
"dev": "yarn run dev:firefox",
"dev:firefox": "webpack --env vendor=firefox --mode=development --watch --progress",
"dev:chrome:build": "webpack --env vendor=chrome --mode=development --watch --progress",
"dev:chrome:service-worker": "rollup -c -w",
"dev:chrome": "concurrently \"yarn dev:chrome:build\" \"yarn dev:chrome:service-worker\"",
"build": "yarn run build:firefox && yarn run build:chrome",
"build:firefox": "webpack --env vendor=firefox --mode=production --progress",
"build:chrome": "webpack --env vendor=chrome --mode=production --progress && rollup -c --environment production",
"format": "prettier --write ."
},
"dependencies": {
"@glagan/zap": "^0.4.4",
"luxon": "^2.5.0",
"oauth-pkce": "^0.0.6",
"svelte-feather-icons": "^4.0.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@tsconfig/svelte": "^3.0.0",
"@types/luxon": "^2.4.0",
"@types/webextension-polyfill": "^0.9.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"concurrently": "^7.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.2.1",
"esbuild": "^0.14.54",
"glob": "^8.0.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"svelte": "^3.51.0",
"svelte-loader": "^3.1.3",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.8",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-sources": "3.2.3",
"zip-webpack-plugin": "^4.0.1"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Glagan/tachikoma.git"
},
"keywords": [
"manga",
"mangadex",
"myanimelist",
"firefox",
"mal",
"chrome",
"anilist",
"kitsu",
"animeplanet",
"extension"
],
"author": "Glagan",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Glagan/tachikoma/issues"
},
"homepage": "https://github.com/Glagan/tachikoma#readme"
}