-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "geoai-assistance-ext",
"displayName": "GeoAI-Assistance-Ext",
"description": "GeoAI Assistance Local",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/rifatSDAS/GeoAI-Assistance-Ext.git"
},
"engines": {
"vscode": "^1.97.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand: geoai-assistance-ext.GeoAI"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "geoai-assistance-ext.GeoAI",
"title": "Open Geospatial AI Assistance"
}
],
"keybindings": [
{
"command": "geoai-assistance-ext.GeoAI",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"watch": "webpack --watch",
"compile": "webpack",
"watch-tests": "tsc -p . -w",
"compile-tests": "tsc -p .",
"package": "webpack --mode production --devtool hidden-source-map",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.13.11",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.23.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.2",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"ai-ass-ext": "file:",
"geoai-assistance-ext": "file:",
"ollama": "^0.5.14"
}
}