-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1003 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1003 Bytes
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-gem",
"version": "0.1.8",
"description": "swc plugin for Gem",
"keywords": [
"swc-plugin",
"gem",
"web components"
],
"main": "swc_plugin_gem.wasm",
"files": [],
"scripts": {
"build:dev": "cross-env CARGO_TARGET_DIR=target cargo build-wasi",
"cp:dev": "cp target/wasm32-wasip1/debug/swc_plugin_gem.wasm .",
"build": "npm run build:dev -- --release",
"cp": "cp target/wasm32-wasip1/release/swc_plugin_gem.wasm .",
"prepublishOnly": "pnpm run build && npm run cp",
"dev": "cargo watch -s \"npm run build:dev && npm run cp:dev\"",
"test": "cross-env RUST_LOG=info cargo watch -x test"
},
"preferUnplugged": true,
"author": "mantou132",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/mantou132/gem.git",
"directory": "crates/swc-plugin-gem"
},
"bugs": {
"url": "https://github.com/mantou132/gem/issues"
},
"homepage": "https://github.com/mantou132/gem#readme"
}