-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.28 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.28 KB
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
{
"name": "@wasm-fmt/lua_fmt",
"type": "module",
"collaborators": [
"magic-akari <akari.ccino@gmail.com>"
],
"description": "A WASM based Lua Formatter",
"version": "0.3.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/lua_fmt"
},
"homepage": "https://github.com/wasm-fmt/lua_fmt",
"types": "lua_fmt.d.ts",
"sideEffects": [
"./lua_fmt.js",
"./lua_fmt_node.js",
"./lua_fmt_esm.js"
],
"keywords": [
"wasm",
"stylua",
"lua",
"formatter"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./lua_fmt.d.ts",
"webpack": "./lua_fmt.js",
"deno": "./lua_fmt.js",
"bun": "./lua_fmt_node.js",
"module-sync": "./lua_fmt_node.js",
"node": "./lua_fmt_node.js",
"default": "./lua_fmt_esm.js"
},
"./esm": {
"types": "./lua_fmt.d.ts",
"default": "./lua_fmt_esm.js"
},
"./node": {
"types": "./lua_fmt.d.ts",
"default": "./lua_fmt_node.js"
},
"./bundler": {
"types": "./lua_fmt.d.ts",
"default": "./lua_fmt.js"
},
"./web": {
"types": "./lua_fmt_web.d.ts",
"default": "./lua_fmt_web.js"
},
"./vite": {
"types": "./lua_fmt_web.d.ts",
"default": "./lua_fmt_vite.js"
},
"./wasm": "./lua_fmt_bg.wasm",
"./package.json": "./package.json",
"./*": "./*"
}
}