-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.57 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.57 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
{
"name": "interview-assistant",
"version": "1.0.4",
"description": "Interview assistant can help you on interview and online meetings",
"main": "./src/index.js",
"author": "hubai",
"license": "MIT",
"icon": "assets/icon.png",
"engines": {
"hubai": ">= 0.1.0-alpha.14 || 1.x"
},
"dependencies": {
"@hubai/core": "^0.0.29",
"monaco-editor": "^0.31.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"start": "hubai extension start-dev-server",
"build": "webpack --progress --config configs/webpack.prod.js",
"serve": "webpack serve --config configs/webpack.dev.js",
"dev": "npm-run-all --parallel start serve",
"tscheck": "tsc",
"package": "hubai extension package"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"babel-loader": "9.1.2",
"css-loader": "^6.8.1",
"html-webpack-plugin": "5.5.0",
"regenerator-runtime": "0.13.11",
"style-loader": "^3.3.3",
"ts-loader": "9.4.2",
"typescript": "4.9.5",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0"
},
"publisher": "hubai",
"keywords": [
"InterviewAssistant",
"interview",
"assistant"
],
"categories": [
"Other"
],
"extension": {
"name": "InterviewAssistant",
"displayName": "Interview Assistant",
"description": "Interview assistant can help you on interview and online meetings",
"extensionKind": [
"workbench"
],
"contributes": {
"configuration": [
{
"displayName": "Brain Instructions",
"name": "brainInstructions",
"type": "string",
"defaultValue": "Act as a senior full stack Developer doing an interview for a Software Engineer Position, you will be working with C#, ASP .NET Core and React. Your answer should be short, and contains only the key words and verbs. Do not write full sentences!. You are allowed to write code. You should also be able to understand even if I make any typo in the question, like saying 'health sheg' instead of 'health check'",
"required": true
}
]
}
}
}