-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 998 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
23
24
25
26
27
28
29
30
31
32
33
{
"name": "swc-plugin-strip-components",
"version": "0.3.9",
"description": "Simple swc plugin to nuke components added to props",
"author": "Alessio Gravili",
"license": "MIT",
"keywords": [
"swc-plugin"
],
"repository": {
"type": "git",
"url": "+https://github.com/AlessioGr/swc-plugin-strip-components.git"
},
"bugs": {
"url": "https://github.com/AlessioGr/swc-plugin-strip-components/issues"
},
"main": "swc_plugin_strip_components.wasm",
"scripts": {
"prepack": "npm run build",
"build": "cargo build-wasi --release",
"postbuild": "cp target/wasm32-wasi/release/swc_plugin_strip_components.wasm .",
"test": "cargo test",
"lint": "cargo clippy --all-targets --all-features"
},
"files": [
"swc_plugin_strip_components.wasm"
],
"preferUnplugged": true,
"devDependencies": {
"@types/react": "^18.3.3",
"react": "^18.3.1"
}
}