{
    "name": "@dhis2/data-engine",
    "version": "3.17.4",
    "description": "A standalone data query engine for DHIS2 REST API",
    "main": "./build/cjs/index.js",
    "module": "./build/es/index.js",
    "types": "./build/types/index.d.ts",
    "exports": {
        "import": "./build/es/index.js",
        "require": "./build/cjs/index.js",
        "types": "./build/types/index.d.ts"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/dhis2/app-runtime.git",
        "directory": "engine"
    },
    "author": "Austin McGee <austin@dhis2.org>",
    "license": "BSD-3-Clause",
    "publishConfig": {
        "access": "public"
    },
    "files": [
        "**"
    ],
    "scripts": {
        "build:types": "tsc --emitDeclarationOnly --outDir ./build/types",
        "build:package": "d2-app-scripts build",
        "build": "concurrently -n build,types \"yarn build:package\" \"yarn build:types\"",
        "watch": "NODE_ENV=development concurrently -n build,types \"yarn build:package --watch\" \"yarn build:types --watch\"",
        "type-check": "tsc --noEmit --allowJs --checkJs",
        "type-check:watch": "yarn type-check --watch",
        "test": "d2-app-scripts test",
        "coverage": "yarn test --coverage"
    }
}
