canal007/voice-bot
0
1{2 "name": "@web-std/stream",3 "version": "1.0.3",4 "description": "Web API compatible streams for node/web",5 "files": [6 "src",7 "dist/src",8 "License.md",9 "Readme.md"10 ],11 "keywords": [12 "web-stream",13 "whatwg-stream",14 "stream",15 "typescript"16 ],17 "type": "module",18 "module": "./src/lib.js",19 "main": "./src/stream.cjs",20 "types": "./src/lib.d.ts",21 "browser": {22 "./src/lib.node.js": "./src/lib.js"23 },24 "exports": {25 ".": {26 "types": "./src/lib.d.ts",27 "browser": "./src/lib.js",28 "require": "./src/stream.cjs",29 "import": "./src/lib.node.js"30 }31 },32 "author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",33 "repository": "https://github.com/web-std/io",34 "license": "MIT",35 "dependencies": {36 "web-streams-polyfill": "^3.1.1"37 },38 "devDependencies": {39 "@types/node": "15.0.2",40 "git-validate": "2.2.4",41 "husky": "^6.0.0",42 "lint-staged": "^11.0.0",43 "playwright-test": "^7.2.0",44 "prettier": "^2.3.0",45 "rimraf": "3.0.2",46 "typescript": "^4.4.4",47 "uvu": "^0.5.2"48 },49 "scripts": {50 "typecheck": "tsc --build",51 "test:es": "uvu test all.spec.js",52 "test:web": "playwright-test -r uvu test/web.spec.js",53 "test:cjs": "node test/node.spec.cjs",54 "test": "npm run test:es && npm run test:web && npm run test:cjs",55 "precommit": "lint-staged"56 },57 "lint-staged": {58 "*.js": [59 "prettier --no-semi --write",60 "git add"61 ]62 }63}