@wasm-fmt/dart_fmt 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/dart_fmt.d.ts +1 -0
- package/dart_fmt.js +18 -61
- package/dart_fmt.mjs +235 -174
- package/dart_fmt.unopt.wasm +0 -0
- package/dart_fmt.unopt.wasm.map +6 -0
- package/dart_fmt.wasm +0 -0
- package/dart_fmt.wasm.map +1 -0
- package/jsr.jsonc +30 -0
- package/package.json +1 -1
- package/wasm-fmt-dart_fmt-0.2.0.tgz +0 -0
package/jsr.jsonc
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fmt/dart-fmt",
|
|
3
|
+
"description": "Dart Formatter powered by WASM ported from dart_style",
|
|
4
|
+
"author": "magic-akari <akari.ccino@gmail.com>",
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/wasm-fmt/dart_fmt"
|
|
10
|
+
},
|
|
11
|
+
"module": "dart_fmt.js",
|
|
12
|
+
"homepage": "https://github.com/wasm-fmt/dart_fmt",
|
|
13
|
+
"types": "dart_fmt.d.ts",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"wasm",
|
|
16
|
+
"formatter",
|
|
17
|
+
"dart"
|
|
18
|
+
],
|
|
19
|
+
"main": "dart_fmt.js",
|
|
20
|
+
"type": "module",
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"exports": "./dart_fmt.js",
|
|
25
|
+
"exclude": [
|
|
26
|
+
"!../build",
|
|
27
|
+
"*.tgz",
|
|
28
|
+
".npmignore"
|
|
29
|
+
]
|
|
30
|
+
}
|
package/package.json
CHANGED
|
Binary file
|