-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
28 lines (28 loc) · 1.03 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
{
"name": "@swc/plugin-remove-console",
"version": "7.0.0",
"description": "SWC plugin for https://www.npmjs.com/package/babel-plugin-remove-console",
"main": "swc_plugin_remove_console.wasm",
"scripts": {
"prepack": "npm run build && vitest run",
"build": "cargo build --release -p swc_plugin_remove_console --target wasm32-wasi && cp ../../target/wasm32-wasi/release/swc_plugin_remove_console.wasm .",
"build:debug": "cargo build -p swc_plugin_remove_console --target wasm32-wasi && cp ../../target/wasm32-wasi/debug/swc_plugin_remove_console.wasm .",
"test": "npm run build:debug && vitest run"
},
"homepage": "https://swc.rs",
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/plugins.git",
"directory": "packages/remove-console"
},
"bugs": {
"url": "https://github.com/swc-project/plugins/issues"
},
"author": "강동윤 <[email protected]>",
"keywords": [],
"license": "Apache-2.0",
"preferUnplugged": true,
"dependencies": {
"@swc/counter": "^0.1.3"
}
}