-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·51 lines (51 loc) · 1.04 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
{
"name": "a-frame-completion",
"displayName": "A-Frame Completion",
"version": "0.4.1",
"publisher": "mlueckert",
"description": "Autocompletion + Snippets for A-Frame",
"icon": "images/logo.jpg",
"galleryBanner": {
"color": "#24C9FF",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/marlon360/a-frame-vscode.git"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"aframe",
"completion",
"autocompletion",
"webxr",
"snippets"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"update-docs": "node ./parser/parser.js"
},
"devDependencies": {
"@types/node": "^14.14.10",
"aframe": "^1.0.4",
"markdown-json": "^1.5.0",
"tabletojson": "^2.0.4",
"tslint": "^6.1.3",
"turndown": "^7.0.0",
"typescript": "^4.1.2",
"vscode": "^1.1.37"
}
}