@shopify/admin-api-client
Version:
Shopify Admin API Client - A lightweight JS client to interact with Shopify's Admin API
75 lines • 1.91 kB
JSON
{
"name": "@shopify/admin-api-client",
"version": "1.0.8",
"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": {
"setupFilesAfterEnv": [
"./src/tests/setupTests.ts"
],
"transform": {
".*": "babel-jest"
}
},
"publishConfig": {
"access": "public"
},
"keywords": [
"shopify",
"node",
"graphql",
"admin API"
],
"files": [
"dist/**/*.*"
],
"dependencies": {
"@shopify/graphql-client": "^1.3.2"
},
"devDependencies": {
"jest-environment-jsdom": "^29.5.0",
"regenerator-runtime": "^0.14.1"
},
"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 . --ext .js,.ts",
"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"
}
}