-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "app-explorer",
"displayName": "app-explorer",
"description": "Helps build documentation while navigating through code",
"version": "0.1.0",
"publisher": "dropbox",
"repository": "https://github.com/dropbox/AppExplorer",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "app-explorer.createCard",
"title": "AppExplorer: Create Card"
},
{
"command": "app-explorer.attachCard",
"title": "AppExplorer: Attach Card to Code"
},
{
"command": "app-explorer.tagCard",
"title": "AppExplorer: Tag Selected Cards"
},
{
"command": "app-explorer.navigate",
"title": "AppExplorer: Navigate to Card"
},
{
"command": "app-explorer.connect",
"title": "AppExplorer: Connect"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/compression": "^1.7.3",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.5",
"@types/node": "16.x",
"@types/socket.io-client": "^3.0.0",
"@types/vscode": "1.80",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@mirohq/websdk-types": "^2.9.5",
"compression": "^1.7.4",
"express": "^4.18.2",
"lit-html": "^3.0.0",
"morgan": "^1.10.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"tiny-invariant": "^1.3.1",
"ws": "^8.14.1"
}
}