-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 965 Bytes
/
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
{
"name": "@wasm-fmt/dart_fmt",
"description": "Dart Formatter powered by WASM ported from dart_style",
"author": "magic-akari <akari.ccino@gmail.com>",
"version": "0.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/dart_fmt"
},
"module": "dart_fmt.js",
"homepage": "https://github.com/wasm-fmt/dart_fmt",
"types": "dart_fmt.d.ts",
"keywords": [
"wasm",
"formatter",
"dart"
],
"main": "dart_fmt.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dart_fmt.d.ts",
"node": "./dart_fmt_node.js",
"default": "./dart_fmt.js"
},
"./vite": {
"types": "./dart_fmt.d.ts",
"default": "./dart_fmt_vite.js"
},
"./package.json": "./package.json",
"./*": "./*"
}
}