-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.52 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
{
"name": "wasm-fmt",
"displayName": "wasm fmt",
"description": "Code Formatter powered by WebAssembly",
"author": "magic-akari",
"publisher": "wasm-fmt",
"version": "0.2.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/wasm-fmt-vscode.git"
},
"engines": {
"vscode": "^1.81.0"
},
"packageManager": "[email protected]",
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:go",
"onLanguage:java",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:objective-c",
"onLanguage:objective-cpp",
"onLanguage:python",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:proto",
"onLanguage:zig"
],
"browser": "./out/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "./esbuild.mjs --minify",
"compile": "./esbuild.mjs",
"watch": "./esbuild.mjs --watch",
"run:browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/node": "^20.6.2",
"@types/vscode": "^1.81.0",
"@vscode/test-web": "^0.0.45",
"esbuild": "^0.19.3"
},
"dependencies": {
"@wasm-fmt/clang-format": "^0.2.3",
"@wasm-fmt/gofmt": "^0.4.2",
"@wasm-fmt/rome_fmt": "^0.0.2",
"@wasm-fmt/ruff_fmt": "^0.4.2",
"@wasm-fmt/zig_fmt": "^0.0.3"
},
"keywords": [
"prettier",
"formatter",
"c",
"cpp",
"go",
"java",
"javascript",
"typescript",
"json",
"csharp"
]
}