forked from PhilipFlyvholm/learnit-plus-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.72 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.72 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
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
94
95
96
97
98
99
100
101
102
103
{
"name": "learnit-plus-plus",
"displayName": "LearnIT++",
"version": "1.6.6",
"description": "Improved design and functionality of the LearnIT page for IT-University of Copenhagen",
"author": "https://github.com/localhost-itu/learnit-plus-plus/graphs/contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/localhost-itu/learnit-plus-plus.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/localhost-itu/learnit-plus-plus/issues"
},
"homepage": "https://github.com/localhost-itu/learnit-plus-plus",
"scripts": {
"dev": "plasmo dev",
"dev:verbose": "plasmo dev --verbose",
"build": "plasmo build",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:firefox": "plasmo build --target=firefox-mv3",
"package:chrome": "plasmo build --zip --target=chrome-mv3",
"package:firefox": "plasmo build --zip --target=firefox-mv3",
"test": "plasmo test"
},
"dependencies": {
"@fullcalendar/core": "6.1.19",
"@fullcalendar/daygrid": "^6.1.19",
"@fullcalendar/icalendar": "^6.1.19",
"@fullcalendar/react": "^6.1.19",
"@fullcalendar/timegrid": "^6.1.19",
"@plasmohq/messaging": "^0.7.2",
"@plasmohq/storage": "^1.15.0",
"caniuse-lite": "^1.0.30001753",
"firebase": "^12.5.0",
"ical.js": "1.5.0",
"plasmo": "0.90.5",
"react": "19.2.0",
"react-dom": "19.2.0",
"swapy": "^1.0.5"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/chrome": "0.1.27",
"@types/node": "24.10.0",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"prettier": "3.6.2",
"tailwindcss": "3",
"typescript": "5.9.3"
},
"manifest": {
"browser_specific_settings": {
"gecko": {
"id": "$FIREFOX_EXT_ID",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"host_permissions": [
"https://learnit.itu.dk/*"
],
"permissions": [
"storage",
"scripting",
"webNavigation"
],
"web_accessible_resources": [
{
"resources": [
"assets/*",
"assets/images/*",
"assets/images/cursors/**/*",
"~/styles/customLoad.css"
],
"matches": [
"https://learnit.itu.dk/*"
]
}
],
"content_scripts": [
{
"matches": [
"https://learnit.itu.dk/*"
],
"css": [
"~/src/styles/customLoad.css"
],
"run_at": "document_start"
}
]
},
"trustedDependencies": [
"@firebase/util",
"@parcel/watcher",
"@swc/core",
"protobufjs"
]
}