UNPKG

unpak.js

Version:

Modern TypeScript library for reading Unreal Engine pak files and assets, inspired by CUE4Parse

84 lines (83 loc) 2.47 kB
{ "name": "unpak.js", "version": "2.0.0-alpha.1", "description": "Modern TypeScript library for reading Unreal Engine pak files and assets, inspired by CUE4Parse", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "jest", "test:watch": "jest --watch", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "release:patch": "bash scripts/release.sh patch", "release:minor": "bash scripts/release.sh minor", "release:major": "bash scripts/release.sh major", "release:alpha": "bash scripts/release.sh alpha", "release:beta": "bash scripts/release.sh beta", "package:check": "npm pack --dry-run", "package:test": "npm pack && tar -tzf *.tgz", "version:check": "npm view unpak.js versions --json" }, "repository": { "url": "https://github.com/kuraima47/unpak.js.git", "type": "git" }, "keywords": [ "unreal-engine", "pak-files", "iostore", "ue4", "ue5", "fortnite", "asset-reader", "typescript", "modular", "cue4parse-inspired" ], "author": "kuraima47", "license": "MIT", "bugs": { "url": "https://github.com/kuraima47/unpak.js/issues" }, "homepage": "https://github.com/kuraima47/unpak.js#readme", "devDependencies": { "@types/aes-js": "^3.1.4", "@types/jest": "^29.5.0", "@types/lodash": "^4.17.20", "@types/lzma-native": "^4.0.4", "@types/node": "^18.19.124", "@types/sprintf-js": "^1.1.4", "@types/stream-buffers": "^3.0.7", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "adm-zip": "^0.5.16", "bezier-js": "^6.1.4", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "typescript": "^5.2.0" }, "dependencies": { "@discordjs/collection": "^2.1.1", "aes-js": "^3.1.2", "axios": "^1.11.0", "bitset": "^5.2.3", "lodash": "^4.17.21", "long": "^5.2.3", "lzma-native": "^8.0.6", "reflect-metadata": "^0.2.2", "sprintf-js": "^1.1.3", "stream-buffers": "^3.0.3" } }