-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.19 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.19 KB
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
{
"name": "@swc/plugin-remove-console",
"version": "12.10.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "SWC plugin for https://www.npmjs.com/package/babel-plugin-remove-console",
"main": "swc_plugin_remove_console.wasm",
"scripts": {
"prepack": "pnpm run build",
"build": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build --release -p swc_plugin_remove_console --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/release/swc_plugin_remove_console.wasm .",
"build:debug": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build -p swc_plugin_remove_console --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/debug/swc_plugin_remove_console.wasm .",
"test": "pnpm run build:debug && vitest run --testTimeout=0"
},
"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": "강동윤 <kdy1997.dev@gmail.com>",
"keywords": [],
"license": "Apache-2.0",
"preferUnplugged": true,
"dependencies": {
"@swc/counter": "^0.1.3"
}
}