-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "@graphql-ts/repo",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/Thinkmill/graphql-ts",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.16.0",
"@manypkg/cli": "^0.23.0",
"@preconstruct/cli": "^2.8.10",
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-jest": "27.0.6",
"eslint": "^7.28.0",
"jest": "27.0.6",
"prettier": "3.5.2",
"prettier-plugin-jsdoc": "1.3.2",
"ts-5-7": "npm:[email protected]",
"typescript": "^5.8.2"
},
"scripts": {
"postinstall": "preconstruct dev && manypkg check",
"version-packages": "changeset version && pnpm i --frozen-lockfile=false",
"test": "jest",
"types": "tsc",
"all:types": "pnpm run /^types.*/ && pnpm -r run types",
"lint": "eslint . && prettier --check .",
"site": "cd site && pnpm dev",
"build": "preconstruct build",
"types:5-7": "./node_modules/ts-5-7/bin/tsc"
},
"preconstruct": {
"packages": [
"packages/*"
],
"exports": true,
"___experimentalFlags_WILL_CHANGE_IN_PATCH": {
"importsConditions": true
}
},
"manypkg": {
"defaultBranch": "main"
},
"pnpm": {
"patchedDependencies": {
"@astrojs/starlight-tailwind": "patches/@astrojs__starlight-tailwind.patch"
}
}
}