@azure/data-tables
Version:
An isomorphic client library for the Azure Tables service.
148 lines • 4.72 kB
JSON
{
"name": "@azure/data-tables",
"version": "13.3.2",
"description": "An isomorphic client library for the Azure Tables service.",
"sdk-type": "client",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./dist/browser/index.js",
"types": "./dist/commonjs/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": "github:Azure/azure-sdk-for-js",
"keywords": [
"azure",
"cloud"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/tables/data-tables/",
"sideEffects": false,
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
"dependencies": {
"@azure/core-auth": "^1.9.0",
"@azure/core-client": "^1.9.2",
"@azure/core-paging": "^1.6.2",
"@azure/core-rest-pipeline": "^1.19.0",
"@azure/core-tracing": "^1.2.0",
"@azure/core-util": "^1.11.0",
"@azure/core-xml": "^1.4.4",
"@azure/logger": "^1.1.4",
"tslib": "^2.8.1"
},
"devDependencies": {
"@azure/arm-storage": "18.5.0",
"@azure/identity": "4.11.1",
"@types/node": "^20.19.25",
"@vitest/browser-playwright": "^4.0.8",
"@vitest/coverage-istanbul": "^4.0.8",
"cross-env": "^7.0.3",
"dotenv": "^16.6.1",
"eslint": "^9.39.1",
"playwright": "^1.56.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"tshy": "^3.0.3",
"typescript": "~5.9.3",
"vitest": "^4.0.8",
"@azure-tools/test-credential": "^2.1.2",
"@azure-tools/test-recorder": "^4.1.1",
"@azure-tools/test-utils-vitest": "^2.0.1",
"@azure/dev-tool": "^1.0.0",
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
},
"//sampleConfiguration": {
"productName": "Azure Data Tables",
"productSlugs": [
"azure",
"azure-table-storage"
],
"skip": [
"generateTableSAS.js"
],
"requiredResources": {
"Azure Storage instance": "https://learn.microsoft.com/azure/storage/tables/table-storage-quickstart-portal"
}
},
"//metadata": {
"constantPaths": [
{
"path": "src/generated/generatedClientContext.ts",
"prefix": "packageDetails"
},
{
"path": "swagger/README.md",
"prefix": "package-version"
},
{
"path": "src/utils/tracing.ts",
"prefix": "packageVersion"
}
]
},
"type": "module",
"tshy": {
"project": "../../../tsconfig.src.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
},
"dialects": [
"esm",
"commonjs"
],
"esmDialects": [
"browser",
"react-native"
],
"selfLink": false
},
"exports": {
"./package.json": "./package.json",
".": {
"browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
},
"react-native": {
"types": "./dist/react-native/index.d.ts",
"default": "./dist/react-native/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"react-native": "./dist/react-native/index.js",
"scripts": {
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
"build:samples": "tsc -p tsconfig.samples.json",
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf --glob dist dist-* types *.tgz *.log",
"execute:samples": "dev-tool samples run samples-dev",
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"generate:client": "autorest --typescript ./swagger/README.md",
"lint": "eslint package.json src test",
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
"pack": "pnpm pack 2>&1",
"test": "npm run test:node && npm run test:browser",
"test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",
"test:node": "dev-tool run test:vitest --test-proxy-debug",
"update-snippets": "dev-tool run update-snippets"
}
}