-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (51 loc) · 1.18 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
{
"name": "inter-intellisense",
"description": "A Vscode extension for Interjs HTML intellisense.",
"repository": {
"type": "git",
"url": "/~https://github.com/interjs/inter-intellisense.git"
},
"module": "esnext",
"version": "1.3.1",
"engines": {
"vscode": "^1.57.1"
},
"main": "./out/extension.js",
"publisher": "Interjs",
"displayName": "Interjs HTML intellisense",
"author": {
"name": "Denis Power",
"email": "denispower02@gmail.com",
"url": "/~https://github.com/DenisPower1"
},
"license": "MIT",
"icon": "./images/icon.png",
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:html"
],
"keywords": ["Interjs", "Inter", "Inter.js", "Interjs HTML intellisense"],
"homepage": "https://interjs.github.io",
"contributes": {
"commands": [
{
"command": "inter.version",
"title": "Inter version"
}
],
"html": {
"customData": ["./customAttrs/html.html-data.json"]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"typescript": "^5.4.5"
}
}