-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
50
51
52
53
54
55
{
"name": "swc-ast-viewer",
"private": true,
"version": "0.105.0",
"description": "AST Viewer for swc",
"repository": "https://github.com/magic-akari/swc-ast-viewer.git",
"author": "magic-akari <[email protected]>",
"license": "MIT",
"keywords": [
"swc"
],
"type": "module",
"bugs": "https://github.com/magic-akari/swc-ast-viewer/issues",
"homepage": "https://github.com/magic-akari/swc-ast-viewer#readme",
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview",
"build:wasm": "wasm-pack build --target=web crates/swc_ast_viewer --release",
"postbuild:wasm": "crates/swc_ast_viewer/scripts/postbuild.sh",
"fix:fmt": "dprint fmt",
"check:fmt": "dprint check",
"check:lint": "oxlint src -D correctness -D pedantic"
},
"imports": {
"#swc_ast_viewer": "./crates/swc_ast_viewer/pkg/swc_ast_viewer.js",
"#swc_ast_viewer/*": "./crates/swc_ast_viewer/pkg/*"
},
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab",
"dependencies": {
"@monaco-editor/loader": "^1.4.0",
"@monaco-editor/react": "^4.6.0",
"@wasm-fmt/biome_fmt": "^0.1.12",
"lz-string": "^1.5.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-resizable-panels": "^2.1.7"
},
"devDependencies": {
"@rsbuild/core": "1.1.13",
"@rsbuild/plugin-react": "1.1.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"dprint": "^0.47.6",
"gen_dep_tag": "^0.0.3",
"monaco-editor": "^0.52.0",
"oxlint": "^0.14.1",
"typescript": "^5.7.2"
},
"pnpm": {
"patchedDependencies": {
"@monaco-editor/[email protected]": "patches/@[email protected]"
}
}
}