-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "swc-plugin-auto-css-modules",
"version": "1.6.0",
"description": "Auto css modules plugin for swc",
"author": "fz6m",
"license": "MIT",
"homepage": "https://github.com/umijs/swc-plugin-auto-css-modules#README",
"repository": {
"type": "git",
"url": "https://github.com/umijs/swc-plugin-auto-css-modules"
},
"types": "index.d.ts",
"files": [
"swc_plugin_auto_css_modules.wasm",
"index.d.ts"
],
"keywords": [
"swc-plugin",
"auto-css-modules"
],
"main": "swc_plugin_auto_css_modules.wasm",
"scripts": {
"prepare:target": "rustup target add wasm32-wasi",
"build": "cargo build-wasi --release",
"move": "cp ./target/wasm32-wasi/release/swc_plugin_auto_css_modules.wasm .",
"test:cargo": "cargo test",
"test:node": "cd ./example && pnpm test",
"test": "pnpm test:cargo && pnpm test:node",
"prepublishOnly": "pnpm build && pnpm move && pnpm test",
"push": "npm publish --access public --registry https://registry.npmjs.com/"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/node": "^20.11.21",
"tsx": "^4.7.1",
"zx": "^7.2.3",
"@xn-sakina/mental": "^4.2.1",
"typescript": "^5.3.3"
}
}