-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "moodlegpt",
"version": "1.1.2",
"description": "This extension allows you to hide CHAT-GPT in a Moodle quiz.",
"scripts": {
"build": "npm run prettier && npm run lint && npm run fastBuild",
"fastBuild": "rollup -c",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoannchb-pro/MoodleGPT.git"
},
"keywords": [
"solve",
"moodle",
"extension-chrome",
"quiz-solutions",
"chatgpt"
],
"author": "yoannchb",
"license": "MIT",
"bugs": {
"url": "https://github.com/yoannchb-pro/MoodleGPT/issues"
},
"homepage": "https://github.com/yoannchb-pro/MoodleGPT#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/chrome": "^0.0.294",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"openai": "^4.78.1",
"prettier": "^3.2.5",
"rollup": "^4.13.0",
"rollup-plugin-ts": "^3.2.0",
"typescript": "^5.4.2"
}
}