-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.67 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
62
63
64
65
66
67
68
69
70
71
{
"name": "td-completes-me",
"displayName": "td_completes_me",
"description": "A code completetion engine for Touch Designer",
"publisher": "DaveTennent",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/picturesbyrobots/td-completes-me.git"
},
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:python"
],
"main": "./client/out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.tdCompletesMe.start_server",
"title": "Touch Designer: Start AutoCompletion Engine"
},
{
"command": "extension.tdCompletesMe.test_command",
"title": "Touch Designer: Test Command"
}
],
"configuration": {
"type": "object",
"title": "TD Completes Me Configuration",
"properties": {
"tdCompletesMe.connectType": {
"type": "string ",
"default": "sockets",
"description": "How to connect to TD running the TCP Server"
},
"tdCompletesMe.serverPort": {
"type": "number",
"default": 1338,
"description": "The port of the number of the TD host"
},
"tdCompletesMe.serverIp": {
"type": "string",
"default": "127.0.0.1",
"description": "Ip of the TD Host"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.7",
"typescript": "^3.6.4",
"tslint": "^5.20.0"
}
}