-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "birdseye-vscode",
"displayName": "Birdseye",
"description": "Quick, convenient, expression-centric, graphical Python debugger using the AST",
"version": "0.0.6",
"publisher": "almenon",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Other",
"Debuggers"
],
"keywords": [
"python",
"birdseye",
"debugger",
"graphical"
],
"repository": {
"type": "git",
"url": "https://github.com/almenon/birdseye-vscode"
},
"bugs": {
"url": "https://github.com/almenon/birdseye-vscode/issues",
"email": "almenon214@gmail.com"
},
"license": "MIT",
"icon": "eye.png",
"activationEvents": [
"onCommand:extension.birdseye.open"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "birdseye configuration",
"properties": {
"birdseye.port": {
"type": "number",
"default": 7778,
"description": "The extension configures birdseye to show its content on localhost:7778 by default - if this conflicts with another port you can change it"
},
"birdseye.pythonPath": {
"type": "string",
"default": "python",
"description": "Mac/Linux users might want to change this to python3 if they are using python 3"
},
"birdseye.telemetry": {
"type": "boolean",
"default": true,
"description": "Whether to report useful anonymous data back to developer."
},
"birdseye.warnIfOutdated": {
"type": "boolean",
"default": true
}
}
},
"commands": [
{
"command": "extension.birdseye.open",
"title": "Show birdseye"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.11.7",
"@types/vscode": "^1.31.0",
"mocha": "^6.1.4",
"typescript": "^3.9.6",
"vscode-test": "^1.3.0"
},
"dependencies": {
"vscode-extension-telemetry": "0.1.2"
}
}