-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"name": "@wasm-fmt/gofmt",
"description": "A wasm based golang formatter",
"author": "magic-akari <[email protected]>",
"version": "0.4.9",
"license": "MIT",
"keywords": [
"wasm",
"golang",
"formatter"
],
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/gofmt"
},
"homepage": "https://github.com/wasm-fmt/gofmt",
"bugs": {
"url": "https://github.com/wasm-fmt/gofmt/issues"
},
"type": "module",
"main": "gofmt.js",
"module": "gofmt.js",
"types": "gofmt.d.ts",
"exports": {
".": {
"types": "./gofmt.d.ts",
"node": "./gofmt_node.js",
"default": "./gofmt.js"
},
"./vite": {
"types": "./gofmt.d.ts",
"default": "./gofmt_vite.js"
},
"./package.json": "./package.json",
"./*": "./*"
},
"scripts": {
"build": "./scripts/build.sh",
"test:node": "node --test test_node/node.test.js",
"test:deno": "deno test test_deno --allow-read",
"test:bun": "bun test test_bun"
},
"engines": {
"node": ">=16.17.0"
},
"publishConfig": {
"access": "public"
}
}