-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.83 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "wesley",
"version": "0.3.0-alpha.1",
"private": true,
"type": "module",
"description": "Core GraphQL compiler and assurance toolchain. Wesley brings the compiler; external modules bring target semantics.",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preflight": "cargo xtask preflight",
"legacy-preflight": "node scripts/preflight.mjs",
"lint:docs-truth": "node scripts/check-doc-truth.mjs",
"tasks:update": "node scripts/tasks-update.mjs",
"prepare": "bash scripts/install-hooks.sh",
"setup:bats-plugins": "bash scripts/setup-bats-plugins.sh",
"format": "prettier --write .",
"format:check": "prettier --check .",
"bootstrap": "pnpm install && cargo xtask preflight && pnpm run test",
"test:ci:local": "bash scripts/test-ci-locally.sh",
"validate": "pnpm lint && pnpm format:check && pnpm test",
"generate:example": "cargo run --bin wesley -- emit typescript --schema test/fixtures/examples/ecommerce.graphql --out test/fixtures/examples/out/ecommerce.d.ts --metadata-out test/fixtures/examples/out/ecommerce.metadata.json",
"clean": "node scripts/clean.mjs",
"meta:fix-packages": "node scripts/fix-package-metadata.mjs",
"ci": "cargo xtask preflight && pnpm validate && pnpm generate:example",
"fixtures:ir": "node scripts/generate-ir-fixtures.mjs"
},
"keywords": [
"graphql",
"schema",
"compiler",
"codegen",
"modules",
"contracts",
"schema-first"
],
"author": "Wesley Authors <oss@flyingrobots.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/flyingrobots/wesley.git"
},
"bugs": {
"url": "https://github.com/flyingrobots/wesley/issues"
},
"homepage": "https://github.com/flyingrobots/wesley#readme",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": "^22.13.0 || ^24.0.0 || >=26.0.0"
},
"pnpm": {
"overrides": {
"flatted": "3.4.2",
"js-yaml@>=4.0.0": ">=4.1.1",
"@babel/core@<=7.29.0": "7.29.7",
"markdown-it@>=13.0.0": "14.2.0",
"brace-expansion@1.1.12": "1.1.14",
"brace-expansion@2.0.2": "2.0.3",
"brace-expansion@5.0.4": "5.0.6",
"brace-expansion@5.0.5": "5.0.6",
"fast-uri": "3.1.2",
"picomatch@2.3.1": "2.3.2",
"picomatch@4.0.3": "4.0.4",
"postcss@8.5.6": "8.5.14",
"undici": "7.28.0",
"ws@8.18.3": "8.20.1"
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@git-stunts/alfred": "0.10.4",
"dependency-cruiser": "18.1.0",
"eslint": "^10.7.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-promise": "^7.3.0",
"globals": "^17.7.0",
"graphql": "17.0.2",
"prettier": "3.9.5"
}
}