-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 712 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 712 Bytes
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
{
"name": "purescript-vscode-ext",
"version": "1.0.0",
"description": "Sample Visual Studio Code extension written in Purescript",
"directories": {
"test": "test"
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "pulp build",
"watch": "pulp --watch build"
},
"keywords": [],
"author": "icyrock.com",
"license": "ISC",
"publisher": "icyrock.com",
"engines": {
"vscode": "^1.1.5"
},
"main": "./output/Main/index",
"devDependencies": {
"vscode": "^1.1.5"
},
"activationEvents": [
"onCommand:extension.sayHello"
],
"contributes": {
"commands": [{
"command": "extension.sayHello",
"title": "Hello World"
}]
}
}