-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (58 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "smartclide-pipeline-interpreter-plugin",
"publisher": "theia",
"keywords": [
"theia-plugin"
],
"version": "0.0.1",
"license": "none",
"files": [
"src"
],
"activationEvents": [
"*"
],
"dependencies": {
"form-data":"^4.0.0"
},
"devDependencies": {
"@theia/plugin": "next",
"@theia/plugin-packager": "latest",
"rimraf": "2.6.2",
"typescript-formatter": "7.2.2",
"typescript": "^3.7.0",
"ts-loader": "^4.1.0",
"clean-webpack-plugin": "^0.1.19",
"webpack": "^4.1.1",
"webpack-cli": "^3.1.1"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"format-code": "tsfmt -r",
"watch": "webpack-cli -w --config webpack.config.js",
"compile": "webpack-cli --config webpack.config.js",
"build": "yarn run format-code && yarn run compile && theia-plugin pack"
},
"engines": {
"theiaPlugin": "next"
},
"theiaPlugin": {
"frontend": "dist/smartclide-pipeline-interpreter-plugin-frontend.js"
}
,
"contributes": {
"configuration": {
"title" : "my config",
"properties": {
"smartclide.pipeline-interpreter.url": {
"default": "http://localhost:8080/convertFile",
"type": "string",
"pattern": "https?://.+",
"scope": "window",
"description": "SmartCLIDE Pipeline interpreter URL"
}
}
}
}
}