-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
118 lines (118 loc) · 2.55 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "unison-ui",
"displayName": "Unison UI",
"description": "View your Unison codebase inside of VS Code.",
"publisher": "TomSherman",
"version": "0.1.5",
"icon": "resources/extension-icon.png",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onCommand:unison-ui.configureCodebase",
"onView:codebase"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "unison-ui.configureCodebase",
"title": "Configure UCM Codebase",
"icon": "$(settings-gear)"
},
{
"command": "unison-ui.refreshCodebase",
"title": "Refresh UCM Codebase",
"icon": "$(refresh)"
}
],
"views": {
"unison": [
{
"id": "codebase",
"name": "Unison Codebase"
}
]
},
"viewsWelcome": [
{
"view": "codebase",
"contents": "[Configure Codebase](command:unison-ui.configureCodebase)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "unison",
"title": "Unison",
"icon": "resources/unison-logo.png"
}
]
},
"menus": {
"view/title": [
{
"command": "unison-ui.configureCodebase",
"when": "view == codebase",
"group": "navigation"
},
{
"command": "unison-ui.refreshCodebase",
"when": "view == codebase",
"group": "navigation"
}
]
},
"configuration": [
{
"title": "Unison UI",
"properties": {
"unison-ui.apiBaseUrl": {
"type": "string",
"description": "The base URL of the currently running UCM instance API."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "pnpm run package",
"compile": "node scripts/build.js",
"watch": "node scripts/watch.js",
"package": "pnpm run compile",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "pnpm run test-compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "~18.13.0",
"@types/vscode": "^1.75.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"@vscode/test-electron": "^2.2.3",
"@vscode/vsce": "^2.17.0",
"esbuild": "^0.17.8",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"fp-ts": "^2.11.1",
"io-ts": "^2.2.16",
"undici": "^5.19.1",
"xstate": "^4.36.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tom-sherman/unison-vscode-ui.git"
}
}