-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.36 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
{
"name": "@0xintuition/graphql",
"description": "GraphQL",
"version": "0.5.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm codegen:build",
"build": "tsup",
"dev": "concurrently \"pnpm codegen:watch\" \"tsup --watch\"",
"publish-dry": "pnpm build && pnpm publish --dry-run --no-git-checks --ignore-scripts",
"publish-next": "pnpm build && pnpm publish --tag next --no-git-checks --ignore-scripts",
"publish-latest": "pnpm build && pnpm publish --tag latest --no-git-checks --ignore-scripts",
"version:patch": "pnpm version patch --no-git-tag-version",
"version:minor": "pnpm version minor --no-git-tag-version",
"version:major": "pnpm version major --no-git-tag-version",
"version:beta": "pnpm version prerelease --preid beta --no-git-tag-version",
"codegen:build": "NODE_ENV=production graphql-codegen --config codegen.ts",
"codegen:watch": "NODE_ENV=development dotenv graphql-codegen --config codegen.ts",
"test": "vitest",
"lint:fix": "pnpm lint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/0xIntuition/intuition-ts",
"directory": "packages/graphql"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@graphql-codegen/typescript-document-nodes": "^4.0.11",
"@tanstack/react-query": "^5.32.0",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.16",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/client-preset": "^4.4.0",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/plugin-helpers": "^5.0.4",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.0",
"@graphql-codegen/typescript-operations": "^4.3.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@graphql-codegen/typescript-react-query": "^6.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.4.1",
"concurrently": "^8.2.2",
"tsup": "^6.7.0",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vitest": "^1.3.1"
}
}