-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.25 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.25 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
{
"name": "@shopify/api-codegen-preset",
"version": "2.0.0",
"description": "Preset for graphql-codegen to parse and type queries to Shopify APIs",
"author": "Shopify",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/api-codegen-preset#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-js.git",
"directory": "packages/api-clients/api-codegen-preset"
},
"bugs": {
"url": "https://github.com/Shopify/shopify-app-js/issues"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/ts/index.d.ts",
"exports": {
".": {
"module": {
"types": "./dist/ts/index.d.ts",
"default": "./dist/index.mjs"
},
"import": {
"types": "./dist/ts/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/ts/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.mjs"
}
},
"scripts": {
"lint": "eslint .",
"build": "pnpm tsc -p ./tsconfig.build.json && pnpm rollup",
"tsc": "tsc",
"test": "jest",
"test:ci": "pnpm test",
"rollup": "rollup -c --bundleConfigAsCjs",
"clean": "rimraf dist/*",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"jest": {
"transform": {
".*": "babel-jest"
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"codegen",
"graphql",
"Admin API",
"Storefront API"
],
"files": [
"dist",
"!dist/tsconfig.build.tsbuildinfo",
"src",
"!src/**/__tests__",
"!src/**/*.test.ts",
"!node_modules"
],
"dependencies": {
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/introspection": "^5.0.1",
"@graphql-codegen/typescript": "^5.0.9",
"@parcel/watcher": "^2.5.6",
"@shopify/graphql-codegen": "^0.1.0",
"graphql": "^16.13.2"
},
"devDependencies": {
"@babel/preset-env": "^7.29.2",
"@graphql-codegen/plugin-helpers": "^6.2.0",
"@shopify/babel-preset": "^25.0.2",
"graphql-config": "^5.1.6",
"rollup-plugin-dts": "^6.4.1"
}
}