-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.14 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
{
"name": "wasm-fmt",
"displayName": "wasm fmt",
"description": "Code Formatter powered by WebAssembly",
"author": "magic-akari",
"publisher": "wasm-fmt",
"version": "0.5.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/wasm-fmt-vscode.git"
},
"engines": {
"vscode": "^1.88.0"
},
"packageManager": "[email protected]",
"categories": [
"Formatters"
],
"icon": "images/icon.png",
"activationEvents": [
"onStartupFinished"
],
"browser": "./out/extension.js",
"scripts": {
"vscode:prepublish": "./esbuild.mjs --minify",
"compile": "./esbuild.mjs",
"watch": "./esbuild.mjs --watch"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/vscode": "^1.88.0",
"esbuild": "^0.24.0"
},
"dependencies": {
"@wasm-fmt/clang-format": "^19.1.5",
"@wasm-fmt/dart_fmt": "^0.2.0",
"@wasm-fmt/gofmt": "^0.4.9",
"@wasm-fmt/lua_fmt": "^0.1.0",
"@wasm-fmt/ruff_fmt": "^0.8.1",
"@wasm-fmt/sql_fmt": "^0.1.0",
"@wasm-fmt/web_fmt": "^0.1.13",
"@wasm-fmt/yamlfmt": "^0.0.3",
"@wasm-fmt/zig_fmt": "^0.0.5"
},
"keywords": [
"prettier",
"formatter",
"web",
"wasm",
"browser"
]
}