swc-plugin-obsidian 2.13.1
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/package.json +48 -0
- package/src/index.d.ts +2 -0
- package/src/index.js +7 -0
- package/src/swc_plugin_obsidian.wasm +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "swc-plugin-obsidian",
|
|
3
|
+
"version": "2.13.1",
|
|
4
|
+
"description": "SWC plugin for Obsidian to be used with Vite or NestJS",
|
|
5
|
+
"author": "Guy Carmeli",
|
|
6
|
+
"main": "src/index.js",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "echo Build skipped",
|
|
9
|
+
"build:local": "RUSTFLAGS=\"-C debuginfo=2\" cargo build --release --target wasm32-wasi",
|
|
10
|
+
"prepack:disabled": "yarn copyBinary",
|
|
11
|
+
"copyBinary": "cp target/wasm32-wasi/release/swc_plugin_obsidian.wasm src",
|
|
12
|
+
"cleanBuildAndCopy": "cargo clean && yarn build && yarn copyBinary",
|
|
13
|
+
"test": "echo Tests skipped",
|
|
14
|
+
"test:local": "cargo test"
|
|
15
|
+
},
|
|
16
|
+
"peerDependencies": {
|
|
17
|
+
"@swc/core": "^1.3.96",
|
|
18
|
+
"react-obsidian": "2.x"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@swc/core": "^1.3.96",
|
|
22
|
+
"react-obsidian": "workspace:*",
|
|
23
|
+
"typescript": "^5.2.2"
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"src/swc_plugin_obsidian.wasm",
|
|
27
|
+
"src/index.d.ts"
|
|
28
|
+
],
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"keywords": [
|
|
31
|
+
"swc-plugin",
|
|
32
|
+
"swc",
|
|
33
|
+
"dependency",
|
|
34
|
+
"dependency",
|
|
35
|
+
"react",
|
|
36
|
+
"react-native",
|
|
37
|
+
"react native",
|
|
38
|
+
"dependency-injection",
|
|
39
|
+
"dependency injection",
|
|
40
|
+
"dependency inversion",
|
|
41
|
+
"inversion of control container",
|
|
42
|
+
"typescript",
|
|
43
|
+
"ioc",
|
|
44
|
+
"di",
|
|
45
|
+
"injector"
|
|
46
|
+
],
|
|
47
|
+
"preferUnplugged": true
|
|
48
|
+
}
|
package/src/index.d.ts
ADDED
package/src/index.js
ADDED
|
Binary file
|