-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
{
"name": "swc-plugin-minify-graphql",
"version": "0.2.0",
"description": "GraphQL query and schema minimizer plugin for SWC",
"keywords": [
"swc-plugin",
"graphql"
],
"main": "lib/swc_plugin_minify_graphql.wasm",
"scripts": {
"prepare": "lefthook install || true",
"prepack": "./utils/build.sh",
"dev": "pnpm _watch -w utils/build.sh -s \"./utils/build.sh debug\"",
"test": "cargo test --workspace",
"test:watch": "pnpm _watch test --workspace",
"bump": "./utils/bump.sh",
"version": "run-s \"version:*\"",
"version:gen-changelog": "git-cliff --bump -o",
"version:cargo-version": "./utils/cargo_set_version.sh",
"version:add-files": "git add Cargo.toml Cargo.lock CHANGELOG.md",
"_watch": "cargo bin cargo-watch -w src -w packages/graphql-minify -w packages/graphql_semantic_compare -w Cargo.lock -w Cargo.toml -w rust-toolchain.toml",
"fuzz": "pnpm --filter=\"swc-plugin-minify-graphql-fuzz\""
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.7",
"binaryen": "^121.0.0",
"cspell": "^8.17.2",
"dprint": "^0.48.0",
"git-cliff": "^2.7.0",
"lefthook": "^1.10.10",
"npm-run-all2": "^7.0.2",
"typescript": "^5.7.3"
},
"files": [
"README.md",
"UNLICENSE",
"LICENSE-MIT",
"packages/graphql-minify/LICENSE",
"lib/swc_plugin_minify_graphql.wasm"
],
"preferUnplugged": true,
"license": "(Unlicense OR MIT)",
"author": "hikiko4ern",
"repository": {
"type": "git",
"url": "git+https://github.com/hikiko4ern/swc-plugin-minify-graphql.git"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}