-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 964 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
35
36
37
{
"name": "swc-plugin-vue-jsx",
"description": "SWC plugin for transforming Vue JSX.",
"version": "0.3.2",
"author": "Pig Fang <[email protected]>",
"repository": "g-plane/swc-plugin-vue-jsx",
"license": "MIT",
"type": "module",
"keywords": [
"swc-plugin"
],
"files": [
"swc_plugin_vue_jsx.wasm"
],
"main": "swc_plugin_vue_jsx.wasm",
"exports": {
".": "./swc_plugin_vue_jsx.wasm"
},
"scripts": {
"fmt": "dprint fmt",
"test": "vitest",
"build": "cargo build -p swc-plugin-vue-jsx --target wasm32-unknown-unknown --release && cp target/wasm32-unknown-unknown/release/swc_plugin_vue_jsx.wasm .",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@gplane/tsconfig": "^6.1.0",
"@swc/core": "^1.7.0",
"@types/node": "^20.14.11",
"dprint": "^0.47.2",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^2.0.3"
},
"peerDependencies": {
"@swc/core": "^1.7.0"
}
}