-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.67 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.67 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
104
{
"name": "easy-odoo-dev",
"publisher": "davidmonnom",
"icon": "resources/easy-odoo-dev.png",
"repository": "https://github.com/davidmonnom/easy-odoo-dev",
"displayName": "Easy Odoo Dev",
"description": "This small extension allows you to manage your Odoo configuration file directly from the Visual Studio Code.",
"version": "1.0.2",
"engines": {
"vscode": "^1.107.0"
},
"categories": [
"Debuggers",
"Testing"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "easy-odoo-dev-container",
"title": "Easy Odoo Dev",
"icon": "resources/icon.png"
}
]
},
"views": {
"easy-odoo-dev-container": [
{
"type": "webview",
"id": "easy-odoo-dev-view",
"name": "Easy Odoo Dev",
"icon": "resources/icon.png"
}
]
},
"commands": [
{
"command": "easy-odoo-dev.launch-server",
"title": "Start Odoo Server"
},
{
"command": "easy-odoo-dev.debug-server",
"title": "Debug Odoo Server"
},
{
"command": "easy-odoo-dev.stop-server",
"title": "Stop Odoo Server"
},
{
"command": "easy-odoo-dev.open-config-file",
"title": "Open Odoo Configuration File"
},
{
"command": "easy-odoo-dev.drop-current-database",
"title": "Drop Current Database"
}
],
"configuration": {
"title": "Odoo",
"properties": {
"easy-odoo-dev.odoo-bin": {
"title": "Odoo Binary",
"type": "string",
"description": "Path to the Odoo server executable.",
"default": ""
},
"easy-odoo-dev.python-venv": {
"title": "Python Virtual Environment",
"type": "string",
"description": "Path to the Python virtual environment.",
"default": ""
},
"easy-odoo-dev.config-file": {
"title": "Configuration File",
"type": "string",
"description": "Path to the Odoo configuration file.",
"default": ""
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src"
},
"devDependencies": {
"@types/ini": "^4.1.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.19.11",
"@types/vscode": "^1.107.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"eslint": "^10.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^7.3.1"
},
"dependencies": {
"ini": "^6.0.0"
}
}