UNPKG

@openhps/video

Version:

Open Hybrid Positioning System

140 lines (139 loc) 4.34 kB
{ "name": "@openhps/video", "version": "1.0.3", "description": "Open Hybrid Positioning System", "author": "Maxim Van de Wynckel", "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/OpenHPS/openhps-video.git" }, "bugs": { "url": "https://github.com/OpenHPS/openhps-video/issues" }, "homepage": "https://openhps.org", "publishConfig": { "access": "public" }, "sideEffects": false, "main": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts", "unpkg": "./dist/web/openhps-video.min.js", "jsdelivr": "./dist/web/openhps-video.min.js", "lsd:module": true, "browser": { "typescript": false, "microtime": false }, "module": "./dist/esm5/index.js", "es2015": "./dist/esm/index.js", "files": [ "dist/**/*", "src/**/*", "components/**/*.jsonld", "config/**/*.json", "LICENSE" ], "scripts": { "example": "shx cp node_modules/@openhps/*/dist/web/*.js examples/common/ && shx cp dist/web/*.js examples/common/ && serve ./examples", "test": "mocha --config test/.mocharc.json", "cover": "nyc mocha --config test/.mocharc.json && nyc report --reporter=cobertura", "cover:ci": "nyc mocha --config test/.mocharc.json --reporter mocha-junit-reporter && nyc report --reporter=cobertura", "lint": "eslint src/**", "clean": "shx rm -rf ./dist && shx rm -rf ./docs/out", "build": "npm run clean && npm-run-all --parallel build:ts:* && npm run build:webpack", "build:components": "componentsjs-generator", "build:quick": "npm-run-all --parallel build:ts:* && npm run build:webpack", "build:typedoc": "typedoc --options docs/typedoc.json", "build:ts:cjs": "tsc --build ./tsconfig/tsconfig.bundle.cjs.json", "build:ts:esm": "tsc --build ./tsconfig/tsconfig.bundle.esm.json", "build:ts:esm5": "tsc --build ./tsconfig/tsconfig.bundle.esm5.json", "build:ts:types": "tsc --build ./tsconfig/tsconfig.bundle.types.json", "build:webpack": "npm-run-all --parallel build:webpack:*", "build:webpack:prod": "webpack --env prod --", "build:webpack:dev": "webpack --env dev --", "deploy:typedoc": "gh-pages -d ./docs/out", "bump:development": "standard-version --prerelease alpha -m 'chore(alpha): %s' --skip.changelog", "bump:beta": "standard-version --prerelease beta -m 'chore(beta): %s' --skip.changelog", "bump:release": "standard-version -m 'chore(release): %s' --skip.changelog" }, "keywords": [ "openhps", "video" ], "dependencies": {}, "peerDependencies": { "@openhps/core": ">=1.0.16", "reflect-metadata": ">=0.2.2" }, "devDependencies": { "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@eslint/compat": "^1.3.2", "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.34.0", "@openhps/core": ">=1.0.16", "@types/chai": "^5.2.2", "@types/mocha": "^10.0.10", "@types/node": "^24.3.0", "@typescript-eslint/eslint-plugin": "^8.41.0", "@typescript-eslint/parser": "^8.41.0", "chai": "^6.0.1", "eslint": "^9.34.0", "eslint-config-prettier": ">=10.1.8", "eslint-plugin-import": "^2.32.0", "eslint-plugin-jsdoc": "^54.1.1", "eslint-plugin-prettier": ">=5.5.4", "gh-pages": "^6.3.0", "globals": "^16.3.0", "husky": "^9.1.7", "mocha": "^11.7.1", "mocha-junit-reporter": "^2.2.1", "npm-run-all": "^4.1.5", "nyc": "^17.1.0", "prettier": "^3.6.2", "reflect-metadata": ">=0.2.2", "serve": "^14.2.4", "shx": "^0.4.0", "standard-version": "^9.5.0", "terser-webpack-plugin": "^5.3.14", "ts-node": "^10.9.2", "typedoc": "^0.28.11", "typescript": "^5.9.2", "webpack": "^5.101.3", "webpack-cli": "^6.0.1" }, "nyc": { "branches": 0, "lines": 0, "functions": 0, "statements": 0, "include": [ "src" ], "exclude": [ "test" ], "extension": [ ".ts" ], "reporter": [ "lcov", "text-summary" ], "cache": true, "all": true, "check-coverage": true, "report-dir": "./coverage" }, "engines": { "node": ">=12.0.0" }, "husky": { "hooks": { "pre-commit": "npm run lint", "pre-push": "npm run test", "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" } } }