cvat-sdk
Version:
CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.
93 lines (92 loc) • 3.01 kB
JSON
{
"name": "cvat-sdk",
"version": "2.31.0",
"description": "CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.",
"repository": {
"type": "git",
"url": "https://github.com/subho57/cvat-sdk.git"
},
"homepage": "https://subho57.github.io/cvat-sdk",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/subho57/cvat-sdk/issues"
},
"keywords": [
"cvat-sdk",
"cvat-sdk-js",
"typescript",
"cvat",
"cvat annotation tool",
"OpenVINO CVAT",
"subho57"
],
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.modern.mjs",
"unpkg": "./dist/index.umd.js",
"umd:main": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"amdName": "CVAT",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.2.0"
},
"scripts": {
"build-types": "tsc --noEmit --pretty",
"build:naive": "rimraf docs dist && tsc && mv dist/src/* ./dist/ && rimraf dist/src && typedoc src/index.ts",
"build": "rimraf docs dist && microbundle --target node -f cjs,modern --visualize src/*.ts && microbundle --target web -f umd --external none && typedoc src/index.ts && cp stats.html docs",
"start": "microbundle watch",
"prepare": "husky install && npm i -g bun",
"_postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"clean-install": "rm -rf node_modules bun.lock && bun install",
"test": "env-cmd jest > test-report.log && echo 'Test Report: ./test-report.log'",
"test:build": "run-s build",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts ."
},
"author": "subho57",
"license": "MIT",
"packageManager": "bun@1.2.4",
"dependencies": {
"axios": "^1.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^6.3.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"microbundle": "^0.15.1",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.6",
"typedoc": "^0.27.9",
"typescript": "^5.7"
},
"files": [
"dist"
]
}