-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.26 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
{
"name": "moodroid",
"displayName": "Moodroid",
"version": "1.1.0",
"description": "Browser extension for working with texts in the moodle system",
"author": "Famouse",
"contributors": [
{
"name": "tinmn9088",
"url": "https://github.com/tinmn9088"
},
{
"name": "Androm10",
"url": "https://github.com/Androm10"
}
],
"packageManager": "npm@8.3.1",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"test": "jest",
"obfuscate": "npm run obfuscate:background && npm run obfuscate:popup && npm run obfuscate:attempt && npm run obfuscate:review && npm run obfuscate:summary && npm run obfuscate:view",
"obfuscate:background": "javascript-obfuscator build/chrome-mv3-prod/background.23452572.js --output build/obfuscated --options-preset default",
"obfuscate:popup": "javascript-obfuscator build/chrome-mv3-prod/popup.730d4668.js --output build/obfuscated --options-preset default",
"obfuscate:attempt": "javascript-obfuscator build/chrome-mv3-prod/quiz-attempt.d9c5fa5c.js --output build/obfuscated --options-preset high-obfuscation",
"obfuscate:review": "javascript-obfuscator build/chrome-mv3-prod/quiz-review.e7f59802.js --output build/obfuscated --options-preset high-obfuscation",
"obfuscate:summary": "javascript-obfuscator build/chrome-mv3-prod/quiz-summary.ed5f5e7d.js --output build/obfuscated --options-preset high-obfuscation",
"obfuscate:view": "javascript-obfuscator build/chrome-mv3-prod/quiz-view.6d6cd66d.js --output build/obfuscated --options-preset high-obfuscation"
},
"dependencies": {
"crypto-js": "^4.1.1",
"plasmo": "0.52.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@plasmohq/prettier-plugin-sort-imports": "1.2.0",
"@types/chrome": "0.0.193",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.0.0",
"@types/node": "18.6.4",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"javascript-obfuscator": "^4.0.0",
"jest-environment-jsdom": "^29.0.2",
"jest-webextension-mock": "^3.7.22",
"prettier": "2.8.1",
"ts-jest": "^28.0.8",
"typescript": "4.7.4"
},
"manifest": {
"host_permissions": [
"*://newsdo.vsu.by/*"
],
"permissions": [
"storage"
]
}
}