UNPKG

@slippi/slippi-js

Version:
93 lines (92 loc) 2.62 kB
{ "name": "@slippi/slippi-js", "version": "7.0.0", "description": "Official Project Slippi Javascript SDK", "sideEffects": false, "license": "LGPL-3.0-or-later", "repository": "project-slippi/slippi-js", "author": { "name": "Jas Laferriere", "email": "jas.laferriere@gmail.com", "url": "https://github.com/JLaferri" }, "files": [ "dist" ], "source": "./src/index.ts", "main": "./dist/index.js", "module": "./dist/index.esm.js", "types": "./dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.esm.js", "default": "./dist/index.js" }, "./package.json": "./package.json" }, "scripts": { "clean": "rimraf dist", "prebuild": "npm run clean", "start": "dts watch --target node", "build:check": "tsc --noEmit", "build": "tsc --noEmit && dts build --target node", "coverage": "npm run test -- --coverage", "postcoverage": "open-cli coverage/lcov-report/index.html", "test": "dts test --runInBand --verbose", "test:watch": "npm run test -- --watchAll --coverage", "test:ci": "npm run test -- --ci --coverage", "lint": "dts lint src", "lint:fix": "dts lint src --fix", "patch": "npm version patch && npm publish", "minor": "npm version minor && npm publish", "major": "npm version major && npm publish", "prepublishOnly": "npm run lint && npm run test && npm run build" }, "keywords": [ "slp-parser-js", "slp", "slippi", "melee", "ssbm" ], "dependencies": { "@shelacek/ubjson": "^1.0.1", "date-fns": "^2.28.0", "enet": "^0.2.9", "iconv-lite": "^0.6.2", "lodash": "^4.17.21", "lodash-es": "^4.17.21", "reconnect-core": "^1.3.0", "semver": "^7.3.2" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/lodash": "^4.14.178", "@types/node": "^20.17.50", "@types/reconnect-core": "^1.3.1", "@types/semver": "^6.0.2", "@typescript-eslint/eslint-plugin": "^5.1.0", "@typescript-eslint/parser": "^5.1.0", "dts-cli": "^2.0.5", "eslint-plugin-flowtype": "^8.0.3", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.2.0", "eslint-plugin-simple-import-sort": "^7.0.0", "husky": "^4.2.5", "jest": "^29.7.0", "open-cli": "^8.0.0", "prettier": "^2.0.5", "pretty-quick": "^2.0.1", "rimraf": "^3.0.0", "ts-jest": "^29.3.2", "tslib": "^2.3.1", "typescript": "^4.4.4" }, "husky": { "hooks": { "pre-commit": "pretty-quick --staged", "pre-push": "npm run lint --quiet" } } }