|
1 | 1 | { |
| 2 | + "scripts": { |
| 3 | + "ci": "npm run check-lint && npm run build && npm run check-exports && npm run test && npm run check-format && npm run check-spelling", |
| 4 | + "dev": "concurrently --names=\"build,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build -- --noEmit\" \"npm run watch:test\"", |
| 5 | + "build": "tsc", |
| 6 | + "lint": "eslint ./ --fix", |
| 7 | + "format": "prettier --write ./", |
| 8 | + "check-lint": "eslint ./", |
| 9 | + "check-format": "prettier --check .", |
| 10 | + "check-exports": "attw --pack ./ --ignore-rules=cjs-resolves-to-esm", |
| 11 | + "check-spelling": "cspell **", |
| 12 | + "test": "vitest run", |
| 13 | + "watch:build": "tsc --watch --preserveWatchOutput", |
| 14 | + "watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false" |
| 15 | + }, |
2 | 16 | "name": "@txe/graphql-x", |
3 | | - "version": "0.9.0", |
| 17 | + "version": "0.10.0", |
4 | 18 | "description": "GraphQL eXpansion", |
5 | | - "keywords": [ |
6 | | - "graphql", |
7 | | - "expansion" |
8 | | - ], |
| 19 | + "license": "MIT", |
| 20 | + "author": "Chabib N. R. <[email protected]> (https://tenex.engineering)", |
9 | 21 | "homepage": "https://github.com/tenex-engineering/graphql-x#readme", |
10 | 22 | "bugs": { |
11 | 23 | "url": "https://github.com/tenex-engineering/graphql-x/issues" |
12 | 24 | }, |
13 | | - "author": "Chabib N. R. <[email protected]> (https://tenex.engineering)", |
14 | 25 | "repository": { |
15 | 26 | "type": "git", |
16 | 27 | "url": "git+https://github.com/tenex-engineering/graphql-x.git" |
17 | 28 | }, |
18 | | - "license": "MIT", |
| 29 | + "keywords": [ |
| 30 | + "graphql", |
| 31 | + "expansion" |
| 32 | + ], |
19 | 33 | "type": "module", |
20 | | - "packageManager": "[email protected]", |
| 34 | + "main": "dist/index.js", |
| 35 | + "bin": { |
| 36 | + "graphql-x": "bin/graphql-x" |
| 37 | + }, |
21 | 38 | "files": [ |
22 | 39 | "dist/", |
23 | 40 | "!dist/testing/", |
24 | 41 | "!dist/types/", |
25 | 42 | "!**/*.spec.*" |
26 | 43 | ], |
27 | | - "main": "./dist/index.js", |
28 | | - "exports": "./dist/index.js", |
29 | | - "types": "./dist/index.d.ts", |
30 | | - "bin": { |
31 | | - "graphql-x": "bin/graphql-x" |
32 | | - }, |
33 | 44 | "imports": { |
34 | | - "#app/*": "./dist/*" |
35 | | - }, |
36 | | - "scripts": { |
37 | | - "prepublishOnly": "npm run ci", |
38 | | - "ci": "npm run check-lint && npm run build && npm run check-exports && npm run test && npm run check-format && npm run check-spelling", |
39 | | - "dev": "concurrently --names=\"build,test\" --prefix-colors=\"cyan,green\" \"npm run watch:build -- --noEmit\" \"npm run watch:test\"", |
40 | | - "build": "tsc", |
41 | | - "lint": "eslint ./ --fix", |
42 | | - "format": "prettier --write ./", |
43 | | - "check-lint": "eslint ./", |
44 | | - "check-format": "prettier --check .", |
45 | | - "check-exports": "attw --pack ./ --ignore-rules=cjs-resolves-to-esm", |
46 | | - "check-spelling": "cspell **", |
47 | | - "test": "vitest run", |
48 | | - "watch:build": "tsc --watch --preserveWatchOutput", |
49 | | - "watch:test": "vitest --exclude=\"**/*.integration.spec.*\" --coverage --clearScreen=false" |
| 45 | + "#app/*": "dist/*" |
50 | 46 | }, |
| 47 | + "packageManager": "[email protected]", |
51 | 48 | "dependencies": { |
52 | 49 | "@parcel/watcher": "^2.5.0", |
53 | 50 | "debounce": "^2.2.0", |
54 | | - "graphql": "^16.9.0" |
| 51 | + "graphql": "^16.9.0", |
| 52 | + "prettier": "^3.3.3" |
55 | 53 | }, |
56 | 54 | "devDependencies": { |
57 | 55 | "@arethetypeswrong/cli": "0.17.0", |
|
70 | 68 | "eslint-plugin-import": "^2.31.0", |
71 | 69 | "eslint-plugin-unicorn": "^56.0.0", |
72 | 70 | "globals": "^15.12.0", |
73 | | - "prettier": "^3.3.3", |
74 | 71 | "typescript": "^5.6.3", |
75 | 72 | "typescript-eslint": "^8.14.0", |
76 | 73 | "vite": "^5.4.11", |
|
0 commit comments