-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.21 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
{
"name": "swc-plugin-ignore-import",
"version": "0.2.0",
"description": "SWC plugin to ignore and remove certain imports based on configuration",
"author": {
"name": "Juga Paazmaya",
"email": "[email protected]",
"url": "https://paazmaya.fi"
},
"homepage": "https://github.com/paazmaya/swc-plugin-ignore-import",
"main": "swc_plugin_ignore_import.wasm",
"type": "module",
"keywords": [
"swc",
"plugin",
"swc-plugin",
"import"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/paazmaya/swc-plugin-ignore-import.git"
},
"bugs": {
"url": "https://github.com/paazmaya/swc-plugin-ignore-import/issues"
},
"files": [
"swc_plugin_ignore_import.wasm",
"package.json",
"LICENSE",
"README.md"
],
"peerDependencies": {
"@swc/core": "^1.7.0"
},
"devDependencies": {
"@swc/core": "1.10.7"
},
"scripts": {
"prepublishOnly": "cargo build-wasi --release && cp target/wasm32-wasip1/release/swc_plugin_ignore_import.wasm .",
"test": "node --test"
},
"preferUnplugged": true,
"license": "MIT"
}