@swankylegg/voice-io
Version:
A browser-based speech recognition and synthesis assistant
68 lines (67 loc) • 1.66 kB
JSON
{
"name": "@swankylegg/voice-io",
"version": "1.0.11",
"description": "A browser-based speech recognition and synthesis assistant",
"type": "module",
"main": "dist/voice-io.js",
"module": "dist/voice-io.mjs",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/voice-io.mjs",
"require": "./dist/voice-io.js"
}
},
"scripts": {
"start": "vite demo",
"dev": "vite demo",
"build": "rollup -c",
"build:demo": "vite build --mode demo",
"preview": "vite preview demo",
"deploy": "npm run build:demo && gh-pages -d dist-demo",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"yolo": "npm run typecheck && npm run build && npm run deploy && npm publish"
},
"keywords": [
"speech",
"recognition",
"synthesis",
"voice",
"assistant",
"browser"
],
"author": "Andrew Swank",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/node": "^22.13.0",
"gh-pages": "^6.3.0",
"rollup": "^2.79.1",
"tslib": "^2.8.1",
"typescript": "^5.3.0",
"vite": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swankylegg/voice-io.git"
},
"bugs": {
"url": "https://github.com/swankylegg/voice-io/issues"
},
"homepage": "https://swankylegg.github.io/voice-io/",
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
}
}