channel3-sdk
Version:
The official TypeScript/JavaScript SDK for Channel3 AI Shopping API
79 lines • 2.14 kB
JSON
{
"name": "channel3-sdk",
"version": "1.0.1",
"description": "The official TypeScript/JavaScript SDK for Channel3 AI Shopping API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"README.md"
],
"keywords": [
"ai",
"shopping",
"ecommerce",
"search",
"api",
"typescript",
"javascript",
"sdk",
"channel3",
"product-search",
"visual-search",
"multimodal"
],
"author": "Channel3 <alex@trychannel3.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/channel3/sdk-typescript.git"
},
"homepage": "https://trychannel3.com",
"bugs": {
"url": "https://github.com/channel3/sdk-typescript/issues"
},
"funding": {
"type": "individual",
"url": "https://trychannel3.com"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.21.4",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:types": "tsc --project tsconfig.types.json",
"clean": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"openapi:clean": "rimraf src/generated",
"openapi:generate": "pnpm exec openapi-generator-cli generate -c openapi.config.json"
}
}