sfcc-cip-analytics-client
Version:
SFCC Commerce Intelligence Platform Analytics Client
99 lines (98 loc) • 2.52 kB
JSON
{
"name": "sfcc-cip-analytics-client",
"version": "0.0.9",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cip-query": "cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cip-client": {
"types": "./dist/cip-client.d.ts",
"default": "./dist/cip-client.js"
},
"./auth": {
"types": "./dist/auth.d.ts",
"default": "./dist/auth.js"
},
"./data": {
"types": "./dist/data/index.d.ts",
"default": "./dist/data/index.js"
},
"./data/types": {
"types": "./dist/data/types.d.ts",
"default": "./dist/data/types.js"
},
"./data/aggregate": {
"types": "./dist/data/aggregate/index.d.ts",
"default": "./dist/data/aggregate/index.js"
},
"./data/aggregate/ocapi": {
"types": "./dist/data/aggregate/ocapi.d.ts",
"default": "./dist/data/aggregate/ocapi.js"
},
"./utils": {
"types": "./dist/utils.d.ts",
"default": "./dist/utils.js"
},
"./normalized-types": {
"types": "./dist/normalized-types.d.ts",
"default": "./dist/normalized-types.js"
},
"./protocol": {
"types": "./dist/protocol.d.ts",
"default": "./dist/protocol.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "tsc --noEmit --project tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "npm run lint && jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "npx tsx tests/integration/simple-integration-test.ts"
},
"author": "Charles Lavery <clavery@salesforce.com>",
"license": "Private",
"description": "SFCC Commerce Intelligence Platform Analytics Client",
"keywords": [
"salesforce",
"commerce-cloud",
"analytics",
"avatica",
"protobuf",
"sfcc"
],
"repository": {
"type": "git",
"url": "https://github.com/clavery/sfcc-cip-analytics-client.git"
},
"files": [
"cli.js",
"dist/**/*",
"proto/**/*",
"README.md"
],
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/uuid": "^10.0.0",
"jest": "^30.0.5",
"protobufjs-cli": "^1.1.3",
"ts-jest": "^29.4.1",
"tsx": "^4.19.1",
"typescript": "^5.9.2"
},
"dependencies": {
"dotenv": "^17.2.1",
"long": "^5.3.2",
"protobufjs": "^7.5.3",
"uuid": "^11.1.0"
}
}