{
    "name": "osecs",
    "version": "2.1.1",
    "description": "Oli's Simple ECS",
    "types": "./dist/index.d.ts",
    "type": "module",
    "main": "./dist/index.cjs",
    "module": "./dist/index.js",
    "scripts": {
        "build": "tsup src --dts",
        "watch": "tsup src --dts --watch",
        "test": "jest --env=node --colors --coverage test",
        "test:bun": "bun test tests",
        "lint": "eslint src --fix --ext .ts",
        "list-files": "tsc --listFiles --noEmit",
        "prepublishOnly": "./scripts/prepublish.sh"
    },
    "repository": {
        "type": "git",
        "url": "git+ssh://git@github.com/olafurkarl/osecs.git"
    },
    "author": "Olafur Karl Stefansson",
    "license": "MIT",
    "files": [
        "./dist"
    ],
    "exports": {
        ".": {
            "import": {
                "types": "./dist/index.d.ts",
                "default": "./dist/index.js"
            },
            "require": {
                "types": "./dist/index.d.ts",
                "default": "./dist/index.cjs"
            }
        }
    },
    "dependencies": {
        "@typescript-eslint/parser": "^8.21.0",
        "eslint": "^8.24.0",
        "eslint-config-prettier": "^8.5.0",
        "eslint-plugin-prettier": "^4.2.1",
        "prettier": "^2.7.1",
        "typescript": "^5.0.4",
        "uuid": "^9.0.0",
        "watch": "^0.13.0"
    },
    "devDependencies": {
        "@types/jest": "^29.0.3",
        "@types/node": "^18.7.19",
        "@types/uuid": "^8.3.4",
        "@typescript-eslint/eslint-plugin": "^5.38.0",
        "jest": "^29.0.3",
        "ts-jest": "^29.0.2",
        "tsup": "^8.3.5"
    },
    "bugs": {
        "url": "https://github.com/olafurkarl/osecs/issues"
    },
    "homepage": "https://github.com/olafurkarl/osecs#readme",
    "directories": {
        "test": "tests"
    }
}
