-
-
Notifications
You must be signed in to change notification settings - Fork 454
/
package.json
112 lines (112 loc) · 3.11 KB
/
package.json
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
105
106
107
108
109
110
111
112
{
"private": true,
"scripts": {
"test": "test -z $CI && vitest || vitest",
"check": "tsc",
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "node ./scripts/actions/build-all.mjs",
"postinstall": "node ./scripts/prepare/postinstall.js",
"pack": "node ./scripts/actions/pack-all.mjs",
"changeset:version": "node ./scripts/changesets/version.mjs",
"changeset:publish": "changeset publish && pnpm jsr",
"jsr": "pnpm --filter @urql/core jsr",
"jsr:dryrun": "pnpm --filter @urql/core jsr --dry-run"
},
"eslintConfig": {
"root": true,
"extends": [
"./scripts/eslint/preset.js"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "es5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint -c scripts/eslint/preset.js --fix",
"*.json": "prettier --write",
"*.md": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --quiet --relative"
}
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
],
"allowedVersions": {
"styled-components": "5"
}
},
"overrides": {
"graphql": "^16.6.0",
"styled-components": "^5.2.3",
"wonka": "^6.3.2"
}
},
"devDependencies": {
"@0no-co/graphql.web": "^1.0.8",
"@actions/artifact": "^2.0.0",
"@actions/core": "^1.10.1",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-block-scoping": "^7.25.0",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/plugin-transform-typescript": "^7.25.2",
"@changesets/cli": "^2.27.8",
"@changesets/get-github-info": "0.6.0",
"@npmcli/arborist": "^7.5.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/pluginutils": "^5.1.0",
"@types/node": "^18.19.50",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^12.17.4",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"execa": "^8.0.0",
"glob": "^9.3.5",
"graphql": "^16.9.0",
"husky-v4": "^4.3.8",
"invariant": "^2.2.4",
"jsdom": "^25.0.0",
"jsr": "^0.13.2",
"lint-staged": "^13.3.0",
"npm-packlist": "^8.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rimraf": "^6.0.1",
"rollup": "^3.29.4",
"rollup-plugin-cjs-check": "^1.0.3",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-visualizer": "^5.12.0",
"tar": "^7.4.3",
"terser": "^5.32.0",
"typescript": "^5.6.2",
"vite": "^5.4.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.1"
},
"dependencies": {
"@actions/github": "^6.0.0",
"node-fetch": "^3.3.2"
},
"engines": {
"pnpm": ">=9.0.0"
}
}