-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.31 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.31 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@apollo/client-integration-tanstack-start",
"version": "0.14.4-rc.0",
"repository": {
"url": "git+https://github.com/apollographql/apollo-client-integrations"
},
"keywords": [
"apollo",
"tanstack-start",
"tanstack",
"apollo-client",
"graphql",
"ssr"
],
"type": "module",
"imports": {
"#bundled": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"typings": "./dist/index.d.ts",
"author": "packages@apollographql.com",
"license": "MIT",
"files": [
"dist/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "rimraf dist; tsup",
"test": "concurrently -c auto \"yarn:test:*(!base) $@\"",
"test:base": "TSX_TSCONFIG_PATH=./tsconfig.tests.json node --import tsx/esm --no-warnings --test \"$@\" src/**/*.test.(ts|tsx)",
"test:ssr": "NODE_OPTIONS=\"${NODE_OPTIONS:-} --conditions=node\" yarn run test:base",
"test:browser": "NODE_OPTIONS=\"${NODE_OPTIONS:-} --conditions=browser\" yarn run test:base",
"prepack": "yarn build",
"prepublishOnly": "yarn pack -o attw.tgz && attw attw.tgz && rm attw.tgz && yarn run test",
"test-bundle": "yarn test-bundle:attw && yarn test-bundle:package && yarn test-bundle:publint && yarn test-bundle:shape",
"test-bundle:attw": "attw --pack .",
"test-bundle:package": "yarn workspace monorepo verify-package-json $PWD/package.json",
"test-bundle:publint": "publint --strict",
"test-bundle:shape": "yarn workspace monorepo verify-package-shape $PWD/package-shape.json",
"bundle-info": "yarn test-bundle --format json | jq '.analysis.entrypoints|to_entries|map({key:.key,value:.value.resolutions|to_entries|map({key:.key,value:.value.resolution.fileName })|from_entries})|from_entries'",
"lint": "eslint --ext .ts,.tsx ."
},
"devDependencies": {
"@apollo/client": "^4.0.0",
"@apollo/client-react-streaming": "workspace:*",
"@arethetypeswrong/cli": "0.15.3",
"@internal/test-utils": "workspace:^",
"@microsoft/api-extractor": "7.43.2",
"@tanstack/react-router": "^1.132.47",
"@tanstack/react-start": "^1.132.48",
"@tanstack/router-core": "^1.132.47",
"@tsconfig/recommended": "1.0.6",
"@types/node": "20.12.11",
"@types/react": "^19.0.0",
"@types/react-dom": "*",
"concurrently": "8.2.2",
"esbuild": "0.24.2",
"eslint": "8.57.0",
"graphql": "^16.10.0",
"publint": "0.2.7",
"react": "^19.2.1",
"react-dom": "*",
"rimraf": "5.0.5",
"rxjs": "^7.8.2",
"tsup": "8.0.2",
"typescript": "5.4.5"
},
"peerDependencies": {
"@apollo/client": "^4.0.0",
"@tanstack/react-router": "^1.132.47",
"@tanstack/react-start": "^1.132.48",
"@tanstack/router-core": "^1.132.47",
"graphql": "^16 || >=17.0.0-alpha.2",
"react": "^19",
"react-dom": "^19",
"rxjs": "^7.3.0"
},
"dependencies": {
"@apollo/client-react-streaming": "0.14.4"
}
}