UNPKG

ts-ebml-esm

Version:
88 lines 2.52 kB
{ "name": "ts-ebml-esm", "version": "3.0.1", "description": "ebml decoder and encoder", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/legokichi/ts-ebml.git" }, "keywords": [ "ebml", "webm", "mkv", "matrosika", "webp" ], "author": "legokichi duckscallion", "license": "MIT", "bugs": { "url": "https://github.com/legokichi/ts-ebml/issues" }, "homepage": "https://github.com/legokichi/ts-ebml#readme", "dependencies": { "bigint-buffer": "^1.1.5", "commander": "^12.0.0", "ebml": "^3.0.0", "ebml-block": "^1.1.2", "events": "^3.3.0", "int64-buffer": "^1.0.1", "matroska": "^2.2.5", "matroska-schema": "^2.1.0" }, "devDependencies": { "@playwright/test": "^1.41.2", "@types/ebml": "^3.0.5", "@types/empower": "^1.2.35", "@types/node": "^20.11.19", "@types/qunit": "^2.19.10", "@typescript-eslint/eslint-plugin": "^7.0.1", "@typescript-eslint/parser": "^7.0.1", "aliasify": "^2.1.0", "browserify": "^17.0.0", "empower": "^1.3.1", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "espower-cli": "^1.1.0", "glob": "^11.0.3", "http-server": "^14.1.1", "power-assert": "^1.6.1", "power-assert-formatter": "^1.4.1", "prettier": "^3.2.5", "qunit": "^2.20.0", "qunit-tap": "^1.5.1", "rimraf": "^5.0.5", "rollup-plugin-node-externals": "^8.0.1", "typedoc": "^0.25.3", "typedoc-plugin-missing-exports": "^2.1.0", "typescript": "^5.2.2", "uglify-js": "^3.17.4", "vite": "^6.3.5", "vite-plugin-dts": "^4.5.4" }, "bin": "./lib/cli.cjs.js", "main": "./lib/index.cjs.js", "module": "./lib/index.es.js", "typings": "./lib/index.d.ts", "browserify": { "transform": [ "aliasify" ] }, "aliasify": { "aliases": { "ebml": "ebml/lib/ebml.js" } }, "scripts": { "clean": "rimraf lib/* dist/* test/*.js", "build": "npm run clean && tsc -p . && npm run _build_standalone && npm run _build_test", "_build_standalone": "browserify lib/index.js --standalone EBML -o dist/EBML.js && uglifyjs dist/EBML.js > dist/EBML.min.js", "_build_test": "espower lib/test.js > lib/test.tmp && mv -f lib/test.tmp lib/test.js && browserify lib/test.js -o dist/test.js", "test": "playwright install && playwright test", "serve": "http-server", "lint": "eslint src", "fmt": "prettier --write 'src/**/*.ts'", "doc": "typedoc src/index.ts" } }