-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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": "three-js-snippets",
"displayName": "Three.JS Snippets",
"description": "Common Three.JS snippets to speed up your Three.js workflow",
"version": "0.6.1",
"author": {
"name": "Alexander Rose",
"email": "[email protected]"
},
"publisher": "aerokaido",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Snippets"
],
"keywords": [
"three.js",
"threejs",
"ThreeJS",
"Three.JS",
"snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippetsReact.json"
},
{
"language": "javascriptreact",
"path": "./snippets/snippetsReact.json"
}
]
},
"license": "MIT",
"galleryBanner": {
"color": "##705df2",
"theme": "light"
},
"repository": {
"type": "git",
"url": "https://github.com/acrose99/Three-JS-Snippets.git"
},
"icon": "logo.png"
}