-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 2.23 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"publisher": "A2K",
"name": "hlsl-linter",
"displayName": "HLSL linter",
"description": "HLSL linter",
"version": "0.3.7",
"bugs": {
"url": "https://github.com/A2K/vscode-hlsl-linter/issues"
},
"homepage": "https://github.com/A2K/vscode-hlsl-linter",
"repository": {
"type": "git",
"url": "https://github.com/A2K/vscode-hlsl-linter.git"
},
"engines": {
"vscode": "^1.30.0"
},
"extensionDependencies": [
"slevesque.shader"
],
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"hlsl",
"shader",
"linter"
],
"activationEvents": [
"onLanguage:hlsl",
"onLanguage:cg",
"onCommand:hlsl.linter.setifdefs"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"@types/tempfile": "^2.0.0",
"tempfile": "^2.0.0"
},
"devDependencies": {
"typescript": "^3.1.4",
"vscode": "^1.1.25",
"tslint": "^5.8.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
},
"contributes": {
"commands": [
{
"command": "hlsl.linter.setifdefs",
"title": "Set HLSL ifdefs"
}
],
"configuration": {
"type": "object",
"title": "HLSL linter",
"properties": {
"hlsl.linter.executablePath": {
"type": "string",
"default": "dxc",
"description": "The dxc executable from DirectX Shader Compiler: https://github.com/Microsoft/DirectXShaderCompiler"
},
"hlsl.linter.trigger": {
"type": "string",
"enum": [
"onSave",
"onType",
"never"
],
"default": "onType",
"description": "When to automatically run the linter."
},
"hlsl.linter.includeDirs": {
"type": [ "string", "array" ],
"items": {
"type": "string"
},
"default": [
],
"description": "List of include directories."
},
"hlsl.linter.defaultArgs": {
"type": [ "string", "array" ],
"items": {
"type": "string"
},
"default": [
"-T", "lib_6_4",
"-Od",
"-Ges"
],
"description": "The dxt executable default arguments."
}
}
}
}
}