@ponderai/web
Version:
Ponder Web SDK – easiest way to build voice AI agents for the web
43 lines (42 loc) • 906 B
JSON
{
"name": "@ponderai/web",
"version": "0.0.1",
"description": "Ponder Web SDK – easiest way to build voice AI agents for the web",
"keywords": [
"voice",
"ai",
"agent"
],
"author": "Sarang Zambare",
"homepage": "https://useponder.ai",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.41.1"
}
}