generated from github/codespaces-blank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
45
46
47
48
{
"name": "saatiedot",
"displayName": "Säätiedot",
"description": "The VSCode extension made by theisoj.",
"version": "1.1.0",
"publisher": "theisoj",
"engines": {
"vscode": "^1.90.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theisoj/weatherextension.git"
},
"categories": [
"Other"
],
"homepage": "https://github.com/theisoj/weatherextension",
"icon": "saatiedot.png",
"license": "MIT",
"bugs": {
"url": "https://github.com/theisoj/weatherextension/issues"
},
"keywords": [
"säätiedot"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "saatiedot.searchByCityAndOrMunicipality",
"title": "Säätiedot: Hae säätiedot"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "node ./out/test/runTest.js",
"bundle": "vsce package",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@types/vscode": "^1.90.0",
"typescript": "5.4.5"
}
}