openai-harmony
Version:
UNOFFICIAL TypeScript bindings for OpenAI Harmony - OpenAI message processing library
55 lines (54 loc) • 1.38 kB
JSON
{
"name": "openai-harmony",
"version": "0.3.0",
"description": "UNOFFICIAL TypeScript bindings for OpenAI Harmony - OpenAI message processing library",
"author": "zacharytamas <zachary@tamas.sh>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/zacharytamas/harmony-ts.git"
},
"homepage": "https://github.com/zacharytamas/harmony-ts#readme",
"bugs": {
"url": "https://github.com/zacharytamas/harmony-ts/issues"
},
"keywords": [
"openai",
"typescript",
"harmony",
"wasm",
"message-processing"
],
"module": "dist/openai_harmony.js",
"type": "module",
"files": [
"README.md",
"dist/"
],
"main": "./dist/openai_harmony.js",
"types": "./dist/openai_harmony.d.ts",
"scripts": {
"build": "rollup -c",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "bun run ci",
"ci": "bun run lint && bun run build",
"lint": "biome check .",
"lint:fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@changesets/cli": "^2.29.5",
"@types/bun": "latest",
"@wasm-tool/rollup-plugin-rust": "^3.0.5",
"@wasm-tool/wasm-pack-plugin": "^1.7.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}