-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
22 lines (22 loc) · 829 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
{
"name": "fluentui-next-appdir-directive",
"version": "0.2.0",
"description": "SWC plugin to add \"use client\" directive to Fluent UI, Griffel, and any other packages.",
"author": "Esteban Munoz Facusse",
"license": "ISC",
"keywords": [
"swc-plugin"
],
"main": "target/wasm32-wasi/release/fluentui_next_appdir_directive.wasm",
"scripts": {
"build-wasi": "cargo build --target wasm32-wasi",
"build-wasm32": "cargo build --target wasm32-unknown-unknown",
"prepare": "yarn build-wasi --release",
"prepare:release": "yarn build-wasi --release && cp target/wasm32-wasi/release/fluentui_next_appdir_directive.wasm ./fluentui_next_appdir_directive.wasm",
"test": "cargo test -p directive_transform"
},
"files": [
"fluentui_next_appdir_directive.wasm"
],
"preferUnplugged": true
}