-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.04 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
{
"name": "odoo-dev-kit",
"displayName": "Odoo Dev Kit",
"description": "Run a simple Odoo database initialization command and stream the server logs directly in the VSCode terminal",
"version": "0.1.5",
"publisher": "ParthPatel",
"repository": {
"type": "git",
"url": "https://github.com/parp-odoo/odoo-dev-kit.git"
},
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"icon": "assets/logo.png",
"activationEvents": [
"onStartupFinished",
"onView:odoo-dev-kit-sidebar",
"onCommand:odoo-dev-kit.helloOdoo"
],
"main": "./out/extension.js",
"extensionSuggestions": [
"GitHub.copilot-chat"
],
"contributes": {
"commands": [
{
"command": "odoo-dev-kit.helloOdoo",
"title": "Hello Odoo"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "odoo-dev-kit-sidebar-container",
"title": "Odoo Dev Kit",
"icon": "./assets/icon.svg"
}
]
},
"views": {
"odoo-dev-kit-sidebar-container": [
{
"id": "odoo-dev-kit-sidebar",
"type": "webview",
"name": "Odoo Dev Kit"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.17",
"@types/vscode": "^1.74.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"dependencies": {
"@vscode/codicons": "^0.0.44"
}
}