-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.17 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.17 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-styled-components",
"version": "12.7.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "SWC plugin for styled-components",
"main": "swc_plugin_styled_components.wasm",
"scripts": {
"prepack": "pnpm run build",
"build": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build --release -p swc_plugin_styled_components --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/release/swc_plugin_styled_components.wasm .",
"build:debug": "RUSTFLAGS='--cfg swc_ast_unknown' cargo build -p swc_plugin_styled_components --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/debug/swc_plugin_styled_components.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/styled-components"
},
"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"
}
}