-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 908 Bytes
/
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
{
"name": "swc-plugin-css-modules",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"keywords": [
"swc-plugin",
"css-modules"
],
"homepage": "https://github.com/VKCOM/swc-plugin-css-modules",
"repository": {
"type": "git",
"url": "https://github.com/VKCOM/swc-plugin-css-modules.git"
},
"bugs": "https://github.com/VKCOM/swc-plugin-css-modules/issues",
"main": "swc_plugin_css_modules.wasm",
"types": "./bindings/types.d.ts",
"scripts": {
"prepack": "npm run build",
"build": "cargo build-wasip1 --release",
"postbuild": "cp target/wasm32-wasip1/release/swc_plugin_css_modules.wasm .",
"test": "cargo test",
"lint": "cargo clippy --all-targets --all-features"
},
"files": [
"swc_plugin_css_modules.wasm",
"bindings/types.d.ts"
],
"preferUnplugged": true,
"publishConfig": {
"provenance": true
}
}