{ "name": "dragon-item-parser", "version": "1.0.0", "description": "Parse League of Legends item stats from CommunityDragon data", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "lint": "eslint .", "lint:fix": "eslint --fix .", "format": "prettier --write .", "format:check": "prettier --check .", "prepublishOnly": "npm run build" }, "keywords": [ "league-of-legends", "cdragon", "communitydragon", "item", "parser", "lol" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "" }, "devDependencies": { "@eslint/js": "^9.39.2", "@typescript-eslint/eslint-plugin": "^8.53.1", "@typescript-eslint/parser": "^8.53.1", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "prettier": "^3.8.3", "typescript": "^5.0.0", "typescript-eslint": "^8.53.1", "vitest": "^3.0.0" } }