-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.12 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
84
85
86
87
{
"name": "@txe/graphql-x",
"version": "0.27.0",
"scripts": {
"dev": "concurrently \"npm run watch:build\" \"npm run watch:test\" --raw --names=\"build,test\" --prefix-colors=\"cyan,green\"",
"ci": "npm run lint && npm run test:unit && npm run build && npm run test:integration && npm run check-exports && npm run check-format && npm run check-spelling",
"build": "tsc --project tsconfig.build.json",
"test": "vitest run",
"test:unit": "npm run test -- --exclude=\"**/*.integration.spec.*\" --coverage --coverage.exclude=\"src/cli/\" --coverage.exclude=\"src/expand.ts\" --coverage.exclude=\"src/cleanup/\"",
"test:integration": "npm run test .integration.spec. -- --coverage --coverage.include=\"src/cli/\" --coverage.include=\"src/expand.ts\" --coverage.include=\"src/cleanup/\"",
"lint": "concurrently \"oxlint\" \"eslint\" --raw --names=\"ox,es\" --prefix-colors=\"yellow,blueBright\"",
"check-format": "prettier --check .",
"check-spelling": "cspell **",
"check-exports": "attw --pack --ignore-rules=cjs-resolves-to-esm ./",
"watch:build": "tsc --build --noEmit --watch --preserveWatchOutput",
"watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --coverage.exclude=\"src/cli/\" --coverage.exclude=\"src/expand.ts\" --coverage.exclude=\"src/cleanup/\" --clearScreen=false",
"format": "prettier --write ./"
},
"description": "GraphQL eXpansion",
"license": "MIT",
"author": "Chabib N.",
"homepage": "https://github.com/c5n8/graphql-x#readme",
"bugs": {
"url": "https://github.com/c5n8/graphql-x/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c5n8/graphql-x.git"
},
"keywords": [
"graphql",
"expansion"
],
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"bin": {
"graphql-x": "bin/graphql-x"
},
"engines": {
"node": ">=20"
},
"files": [
"./dist/"
],
"imports": {
"#package/*": "./dist/*"
},
"dependencies": {
"@parcel/watcher": "^2.5.0",
"@txe/define-x": "^1.3.0",
"@txe/invoke": "^0.1.0",
"commander": "^13.1.0",
"debounce": "^2.2.0",
"graphql": "^16.9.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@changesets/cli": "^2.27.10",
"@cspell/cspell-types": "^8.16.0",
"@eslint/js": "^9.15.0",
"@stylistic/eslint-plugin": "^3.0.0",
"@txe/eslint-plugin-x": "^0.2.1",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.9.1",
"@vitest/coverage-v8": "^3.0.4",
"@vitest/eslint-plugin": "^1.1.16",
"concurrently": "^9.1.0",
"cspell": "^8.16.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-oxlint": "^0.15.2",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"graphql-config": "^5.1.3",
"oxlint": "^0.15.3",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.3",
"vitest": "^3.0.4"
}
}