forked from AnimalLogic/AL_usd_vscode_extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "vscode-usda-syntax",
"displayName": "USD Language",
"description": "Pixar USD Language Extension by Animal Logic",
"version": "0.1.0",
"author": {
"name": "Aloys Baillet",
"email": "aloys.baillet@al.com.au",
"url": "https://www.animallogic.com"
},
"publisher": "animallogic",
"keywords": [
"animallogic",
"AL_USDMaya",
"pixar",
"usd",
"usda"
],
"repository": {
"type": "git",
"url": "https://github.com/AnimalLogic/AL_usd_vscode_extension"
},
"icon": "images/animallogic_logo.jpg",
"engines": {
"vscode": "^1.34.0"
},
"main": "src/extension.js",
"activationEvents": [
"onLanguage:usd"
],
"devDependencies": {
"@types/node": "^8.10.51",
"@types/vscode": "^1.34.0",
"vscode-uri": "^2.0.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "usd",
"aliases": [
"USD",
"usd"
],
"extensions": [
".usd",
".usda",
".usdc",
".usda.in"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "usd",
"scopeName": "source.usd",
"path": "./syntaxes/usd.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "USD",
"properties": {
"usd.resolve": {
"type": "string",
"default": "usdresolve --anchorPath \"{anchorPath}\" \"{inputPath}\"",
"description": "UsdResolve command template used to resolve asset paths inside usd files."
},
"usd.cat": {
"type": "string",
"default": "usdcat --usdFormat usda \"{inputPath}\"",
"description": "UsdCat command template used to convert .usdc files to a .usda preview."
}
}
}
}
}