|
1 | 1 | { |
2 | 2 | "name": "@graphprotocol/typesync-cli", |
3 | | - "version": "0.0.0-alpha", |
| 3 | + "version": "0.0.0-alpha.6", |
4 | 4 | "type": "module", |
5 | 5 | "license": "MIT", |
6 | 6 | "description": "CLI toolchain to view existing types, select, pick, extend to create schemas and generate a @graphprotocol/hypergraph schema.", |
7 | 7 | "repository": { |
8 | 8 | "type": "git", |
9 | | - "url": "https://github.com/graphprotocol/hypergraph.git", |
| 9 | + "url": "git+https://github.com/graphprotocol/hypergraph.git", |
10 | 10 | "directory": "apps/typesync" |
11 | 11 | }, |
12 | 12 | "publishConfig": { |
|
15 | 15 | "linkDirectory": false |
16 | 16 | }, |
17 | 17 | "bin": { |
18 | | - "typesync": "./dist/bin.cjs" |
| 18 | + "typesync": "dist/bin.js" |
19 | 19 | }, |
20 | 20 | "files": ["README.md", "dist"], |
21 | 21 | "scripts": { |
22 | 22 | "codegen:gql": "graphql-codegen --config ./graphql.codegen.ts", |
23 | 23 | "build:client": "vite build", |
24 | | - "build": "rm -rf dist && pnpm run build:client && tsup && pnpm run copy-all", |
| 24 | + "build": "rm -rf ./client/dist && pnpm run build:client && tsup && pnpm run copy-all", |
25 | 25 | "build:ts": "tsup", |
26 | 26 | "dev": "vite build && pnpx tsx ./src/bin.ts", |
27 | 27 | "dev:cli": "pnpx tsx ./src/bin.ts studio", |
28 | 28 | "dev:client": "vite --force", |
29 | 29 | "clean": "rimraf dist/*", |
30 | | - "start": "node ./dist/bin.cjs", |
| 30 | + "start": "node ./dist/bin.js", |
31 | 31 | "check": "tsc --noEmit", |
32 | 32 | "test": "vitest run", |
33 | 33 | "coverage": "vitest run --coverage", |
34 | 34 | "copy-package-json": "tsx scripts/copy-package-json.ts", |
35 | | - "copy-db-migrations": "cp -rp ./src/migrations ./dist/migrations", |
| 35 | + "copy-db-migrations": "cp ./src/migrations/_schema.sql ./dist/migrations/_schema.sql", |
36 | 36 | "copy-client-dist": "mkdir -p ./dist/client && cp -rp ./client/dist ./dist/client/dist", |
37 | 37 | "copy-all": "pnpm run copy-package-json && pnpm run copy-db-migrations && pnpm run copy-client-dist", |
38 | 38 | "typesync": "pnpx tsx ./src/bin.ts studio" |
|
46 | 46 | "@effect/sql": "latest", |
47 | 47 | "@effect/sql-sqlite-node": "latest", |
48 | 48 | "@effect/vitest": "latest", |
49 | | - "@graphprotocol/grc-20": "^0.17.0", |
50 | | - "@graphql-codegen/cli": "^5.0.6", |
51 | | - "@graphql-codegen/client-preset": "^4.8.1", |
| 49 | + "@graphprotocol/grc-20": "^0.18.0", |
| 50 | + "@graphql-codegen/cli": "^5.0.7", |
| 51 | + "@graphql-codegen/client-preset": "^4.8.2", |
52 | 52 | "@graphql-codegen/typescript": "^4.1.6", |
53 | 53 | "@graphql-codegen/typescript-operations": "^4.6.1", |
54 | | - "@tanstack/router-plugin": "^1.120.13", |
55 | | - "@types/node": "^22.15.29", |
56 | | - "@types/react": "^19.1.6", |
57 | | - "@types/react-dom": "^19.1.5", |
58 | | - "@vitejs/plugin-react": "^4.5.0", |
| 54 | + "@tanstack/router-plugin": "^1.121.10", |
| 55 | + "@types/node": "^24.0.1", |
| 56 | + "@types/react": "^19.1.8", |
| 57 | + "@types/react-dom": "^19.1.6", |
| 58 | + "@vitejs/plugin-react": "^4.5.2", |
| 59 | + "glob": "^11.0.3", |
59 | 60 | "tsup": "^8.5.0", |
60 | | - "tsx": "^4.19.4", |
| 61 | + "tsx": "^4.20.3", |
61 | 62 | "vite": "^6.3.5" |
62 | 63 | }, |
63 | 64 | "dependencies": { |
|
66 | 67 | "@heroicons/react": "^2.2.0", |
67 | 68 | "@phosphor-icons/react": "^2.1.10", |
68 | 69 | "@radix-ui/react-tabs": "^1.1.12", |
69 | | - "@tailwindcss/vite": "^4.1.8", |
70 | | - "@tanstack/react-form": "^1.12.1", |
71 | | - "@tanstack/react-query": "^5.79.2", |
72 | | - "@tanstack/react-query-devtools": "^5.79.2", |
73 | | - "@tanstack/react-router": "^1.120.15", |
74 | | - "@tanstack/react-router-devtools": "1.120.15", |
| 70 | + "@tailwindcss/vite": "^4.1.10", |
| 71 | + "@tanstack/react-form": "^1.12.3", |
| 72 | + "@tanstack/react-query": "^5.80.7", |
| 73 | + "@tanstack/react-query-devtools": "^5.80.7", |
| 74 | + "@tanstack/react-router": "^1.121.2", |
| 75 | + "@tanstack/react-router-devtools": "1.121.8", |
75 | 76 | "better-sqlite3": "^11.10.0", |
76 | 77 | "date-fns": "^4.1.0", |
77 | 78 | "effect": "latest", |
|
81 | 82 | "open": "^10.1.2", |
82 | 83 | "react": "^19.1.0", |
83 | 84 | "react-dom": "^19.1.0", |
84 | | - "shiki": "^3.4.2", |
85 | | - "tailwindcss": "^4.1.8" |
| 85 | + "shiki": "^3.6.0", |
| 86 | + "tailwindcss": "^4.1.10" |
86 | 87 | } |
87 | 88 | } |
0 commit comments