-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.27 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
93
{
"name": "scombz-utilities",
"displayName": "ScombZ Utilities",
"version": "4.4.7",
"description": "__MSG_extensionDescription__",
"author": "udai",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv2",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:edge": "plasmo build --target=edge-mv3 && npm run afterBuild",
"build:firefox": "plasmo build --target=firefox-mv2 && npm run afterBuild",
"build": "plasmo build --target=chrome-mv3 && plasmo build --target=edge-mv3 && plasmo build --target=firefox-mv2 && npm run afterBuild",
"package": "plasmo package --target=chrome-mv3 && plasmo package --target=chromium-mv3 && plasmo package --target=edge-mv3 && plasmo package --target=firefox-mv2",
"eslint": "eslint '**/*.ts?(x)' --fix",
"afterBuild": "python ./afterBuild.py",
"publish": "npm run build && npm run package && zip -r build/sources.zip src assets css locales package.json .env.production tsconfig.json README.md && publish-extension --chrome-zip build/chrome-mv3-prod.zip --firefox-zip build/firefox-mv2-prod.zip --firefox-sources-zip build/sources.zip --edge-zip build/edge-mv3-prod.zip"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.14",
"@plasmohq/messaging": "^0.6.2",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"brace": "^0.11.1",
"date-fns": "^3.6.0",
"encoding-japanese": "^2.1.0",
"ical": "^0.8.0",
"japanese-holidays": "^1.0.10",
"jszip": "^3.10.1",
"markdown-it": "^14.1.0",
"node-sass": "^9.0.0",
"plasmo": "^0.74.2",
"react": "18.2.0",
"react-ace": "^11.0.1",
"react-dom": "18.2.0",
"react-icons": "^5.1.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/encoding-japanese": "^2.0.5",
"@types/markdown-it": "^14.0.1",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"prettier": "3.2.4",
"publish-browser-extension": "^2.1.3",
"typescript": "5.3.3"
},
"manifest": {
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"assets/*",
"css/*"
],
"matches": [
"https://*/*"
]
}
],
"permissions": [
"storage",
"browsingData",
"identity"
],
"host_permissions": [
"http://bus.shibaura-it.ac.jp/"
],
"key": "$CRX_PUBLIC_KEY",
"oauth2": {
"client_id": "674854842294-2foqvpq1io2mecbfs0onasqq4t76dht7.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/classroom.courses.readonly",
"https://www.googleapis.com/auth/classroom.course-work.readonly",
"https://www.googleapis.com/auth/classroom.student-submissions.me.readonly",
"https://www.googleapis.com/auth/userinfo.email"
]
}
}
}