-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 977 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 977 Bytes
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
{
"name": "@wasm-fmt/ruff_fmt",
"type": "module",
"collaborators": [
"magic-akari <akari.ccino@gmail.com>"
],
"description": "A WASM Based Python Formatter",
"version": "0.10.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wasm-fmt/ruff_fmt"
},
"homepage": "https://github.com/wasm-fmt/ruff_fmt",
"types": "ruff_fmt.d.ts",
"sideEffects": [
"./snippets/*"
],
"keywords": [
"wasm",
"ruff",
"python",
"formatter"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./ruff_fmt.d.ts",
"node": "./ruff_fmt_node.js",
"default": "./ruff_fmt.js"
},
"./vite": {
"types": "./ruff_fmt.d.ts",
"default": "./ruff_fmt_vite.js"
},
"./package.json": "./package.json",
"./*": "./*"
}
}