UNPKG

@shopify/admin-api-client

Version:

Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API

77 lines 1.96 kB
{ "name": "@shopify/admin-api-client", "version": "1.1.2", "description": "Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API", "repository": { "type": "git", "url": "git+https://github.com/Shopify/shopify-app-js.git", "directory": "packages/api-clients/admin-api-client" }, "author": "Shopify", "license": "MIT", "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" } }, "jest": { "transform": { ".*": "babel-jest" } }, "publishConfig": { "access": "public" }, "keywords": [ "shopify", "node", "graphql", "admin API" ], "files": [ "dist/**/*.*", "src", "!src/**/__tests__", "!src/**/*.test.ts" ], "dependencies": { "@shopify/graphql-client": "^1.4.2" }, "devDependencies": { "@babel/preset-env": "^7.28.6", "@shopify/babel-preset": "^25.0.2", "jest-environment-jsdom": "^30.2.0", "rollup-plugin-dts": "^6.3.0" }, "bugs": { "url": "https://github.com/Shopify/shopify-app-js/issues" }, "homepage": "https://github.com/Shopify/shopify-app-js/tree/main/packages/api-clients/admin-api-client#readme", "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" } }