-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·62 lines (62 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
{
"name": "vscode-nip-scripts",
"displayName": "NIP-Scripts",
"description": "View and run NIP scripts in the sidebar.",
"version": "0.1.1",
"publisher": "traBpUkciP",
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Other"
],
"license": "MIT",
"activationEvents": [
"onView:nipScripts"
],
"main": "./out/src/extension",
"icon": "media/file_type_python.png",
"repository": {
"url": "https://github.com/Duroktar/vscode-nip-scripts"
},
"contributes": {
"views": {
"explorer": [
{
"id": "nipScripts",
"name": "NIP Scripts"
}
]
},
"commands": [
{
"command": "nipScripts.executeCommand",
"title": "Run Script"
}
],
"configuration": {
"type": "object",
"title": "NIP-Scripts configuration",
"properties": {
"nip-scripts.showStartNotification": {
"type": "boolean",
"default": true,
"description": "Show a notification when a script is run."
}
}
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package",
"ext:publish": "vsce publish"
},
"devDependencies": {
"@types/node": "*",
"typescript": "^2.1.4",
"vsce": "^1.36.1",
"vscode": "^1.0.0"
}
}