-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.31 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.31 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
33
34
35
36
37
38
{
"name": "@swc-contrib/plugin-graphql-codegen-client-preset",
"version": "0.22.0",
"publishConfig": {
"access": "public",
"provenance": true
},
"description": "A SWC plugin for https://the-guild.dev/graphql/codegen/plugins/presets/preset-client",
"main": "swc_plugin_graphql_codegen_client_preset.wasm",
"scripts": {
"prepack": "pnpm run build",
"build": "cargo build -p swc_plugin_graphql_codegen_client_preset --target wasm32-wasip1 --release && cp ../../target/wasm32-wasip1/release/swc_plugin_graphql_codegen_client_preset.wasm .",
"build:debug": "cargo build -p swc_plugin_graphql_codegen_client_preset --target wasm32-wasip1 && cp ../../target/wasm32-wasip1/debug/swc_plugin_graphql_codegen_client_preset.wasm .",
"test": "echo 'No tests'"
},
"homepage": "https://the-guild.dev/graphql/codegen/plugins/presets/preset-client",
"repository": {
"type": "git",
"url": "git+https://github.com/swc-project/plugins.git",
"directory": "contrib/graphql-codegen-client-preset"
},
"bugs": {
"url": "https://github.com/swc-project/plugins/issues"
},
"keywords": [
"swc-plugin",
"graphql-codegen",
"preset-client"
],
"license": "MIT",
"files": [
"swc_plugin_graphql_codegen_client_preset.wasm"
],
"type": "module",
"engines": {
"node": ">=16"
}
}