-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.33 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
84
85
86
87
88
{
"name": "app-explorer",
"displayName": "app-explorer",
"description": "Helps build documentation while navigating through code",
"version": "0.2.0",
"publisher": "dropbox",
"repository": "https://github.com/dropbox/AppExplorer",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/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.manageWorkspaceBoards",
"title": "AppExplorer: Manage Workspace Boards"
},
{
"command": "app-explorer.renameBoard",
"title": "AppExplorer: Rename Board"
},
{
"command": "app-explorer.navigate",
"title": "AppExplorer: Navigate to Card"
},
{
"command": "app-explorer.connect",
"title": "AppExplorer: Connect"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "vite build --minify false",
"pretest": "npm run lint && npm run type-check && npm run format",
"format": "prettier --write src",
"lint": "eslint src --ext ts",
"type-check": "tsc --noEmit",
"test": "true",
"prepare": "husky"
},
"devDependencies": {
"@types/compression": "^1.7.3",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.5",
"@types/node": "^20.17.6",
"@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",
"husky": "^9.1.7",
"mocha": "^10.2.0",
"typescript": "5.5",
"vite": "^5.4.11"
},
"dependencies": {
"@mirohq/websdk-types": "^2.9.5",
"compression": "^1.7.4",
"express": "^4.18.2",
"lit-html": "^3.0.0",
"morgan": "^1.10.0",
"prettier": "^3.4.1",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"tiny-invariant": "^1.3.1",
"ws": "^8.14.1"
}
}