-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "extension",
"displayName": "Extension",
"description": "",
"version": "0.0.1",
"publisher": "thepublisher",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.sayHello"
],
"main": "./out/src/extension",
"contributes": {
"commands": [{
"command": "extension.sayHello",
"title": "Hello World"
}]
},
"scripts": {
"build": "fable-splitter --config splitter.config.js",
"clean": "rm -rf bin && rm -rf node_modules && rm -rf obj && rm -rf out && rm -rf packages"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-runtime": "^6.23.0",
"fable-import-vscode": "0.1.0-narumi-2",
"vscode": "^1.1.0"
},
"dependencies": {
"babel-core": "^6.26.0",
"fable-splitter": "^0.1.20"
}
}