Files
HCFS/sdks/javascript/package.json
2025-07-30 09:34:16 +10:00

77 lines
1.8 KiB
JSON

{
"name": "@hcfs/sdk",
"version": "2.0.0",
"description": "JavaScript/TypeScript SDK for the Context-Aware Hierarchical Context File System",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"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",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"hcfs",
"context",
"ai",
"search",
"embeddings",
"typescript",
"javascript",
"sdk"
],
"author": "HCFS Development Team <dev@hcfs.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hcfs/hcfs.git",
"directory": "sdks/javascript"
},
"bugs": {
"url": "https://github.com/hcfs/hcfs/issues"
},
"homepage": "https://docs.hcfs.dev/sdk/javascript",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"ws": "^8.14.0",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@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.50.0",
"jest": "^29.7.0",
"rollup": "^4.0.0",
"@rollup/plugin-typescript": "^11.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-commonjs": "^25.0.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.0",
"typescript": "^5.2.0",
"typedoc": "^0.25.0"
},
"peerDependencies": {
"typescript": ">=4.5.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}