@ikas/admin-api-client
Version:
ikas public node api client for store apps and private apps
68 lines (67 loc) • 1.79 kB
JSON
{
"name": "@ikas/admin-api-client",
"version": "2.0.8",
"description": "ikas public node api client for store apps and private apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"packageManager": "pnpm@10.5.2",
"files": [
"dist"
],
"author": "ikas",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"ikas",
"graphql",
"Public API"
],
"dependencies": {
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/plugin-helpers": "^5.1.1",
"@graphql-tools/utils": "^10.8.6",
"axios": "^1.9.0",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"qs": "^6.14.0"
},
"peerDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@graphql-tools/utils": "^10.0.0",
"graphql": "^16.0.0",
"graphql-request": "^7.0.0"
},
"devDependencies": {
"@types/node": "^22.13.4",
"@types/qs": "^6.14.0",
"git-branch-is": "^4.0.0",
"husky": "4.3.8",
"oxlint": "^1.2.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"scripts": {
"build:prod": "npx tsc",
"build:dev": "npx tsc",
"version:patch": "yarn build:prod && npm --no-git-tag-version version patch && git add package.json src/api/admin/generated/*",
"codegen": "graphql-codegen --config src/test/codegen-dynamic-template/codegen.ts",
"lint": "oxlint src/",
"lint:fix": "oxlint src/ --fix"
},
"husky": {
"hooks": {
"pre-commit": "git-branch-is main && (yarn version:patch) || (git-branch-is development && yarn version:alpha) || true"
}
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 200,
"tabWidth": 2,
"bracketSpacing": true
}
}