-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "mojo-intellisense",
"publisher": "mojocss",
"displayName": "Mojo CSS Intellisense",
"icon": "resources/icon.png",
"description": "",
"version": "0.2.0",
"engines": {
"vscode": "^1.81.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mojocss/mojo-intellisense.git"
},
"license": "MIT",
"categories": [
"Snippets"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "mojocss-docs",
"title": "Mojo CSS Documentation",
"icon": "resources/mojo.svg"
}
]
},
"views": {
"mojocss-docs": [
{
"id": "mojocss-docs-files",
"name": "Mojo CSS Documentation"
}
]
}
},
"main": "./extension.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.81.0",
"@vscode/test-electron": "^2.3.4",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"glob": "^10.3.15",
"typescript": "^5.1.6"
},
"dependencies": {
"chokidar": "^3.5.3",
"markdown-it": "^14.1.0",
"vscode-languageclient": "^8.1.0"
}
}