98 lines
2.4 KiB
JSON
98 lines
2.4 KiB
JSON
{
|
|
"name": "youtube-summarizer-sdk",
|
|
"version": "4.2.0",
|
|
"description": "Official JavaScript/TypeScript SDK for the YouTube Summarizer Developer Platform",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"dev": "rollup -c -w",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "eslint src --ext .ts,.js",
|
|
"lint:fix": "eslint src --ext .ts,.js --fix",
|
|
"format": "prettier --write src/**/*.{ts,js,json}",
|
|
"type-check": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build && npm run test",
|
|
"docs": "typedoc src/index.ts"
|
|
},
|
|
"keywords": [
|
|
"youtube",
|
|
"summarizer",
|
|
"ai",
|
|
"transcript",
|
|
"video",
|
|
"api",
|
|
"sdk",
|
|
"mcp",
|
|
"claude",
|
|
"typescript",
|
|
"javascript"
|
|
],
|
|
"author": "YouTube Summarizer <support@youtube-summarizer.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/youtube-summarizer/javascript-sdk.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/youtube-summarizer/javascript-sdk/issues"
|
|
},
|
|
"homepage": "https://docs.youtube-summarizer.com/javascript-sdk",
|
|
"files": [
|
|
"dist/**/*",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"cross-fetch": "^4.0.0",
|
|
"ws": "^8.14.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-commonjs": "^25.0.0",
|
|
"@rollup/plugin-node-resolve": "^15.2.0",
|
|
"@rollup/plugin-typescript": "^11.1.0",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^20.0.0",
|
|
"@types/ws": "^8.5.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
"@typescript-eslint/parser": "^6.0.0",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.0",
|
|
"jest": "^29.5.0",
|
|
"prettier": "^2.8.0",
|
|
"rollup": "^3.21.0",
|
|
"ts-jest": "^29.1.0",
|
|
"tslib": "^2.5.0",
|
|
"typedoc": "^0.24.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^4.0.0 || ^5.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.esm.js",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"browser": {
|
|
"ws": false
|
|
}
|
|
} |