ixp-server
Version:
A comprehensive SDK for building Intent Exchange Protocol (IXP) servers with ease
130 lines • 3.67 kB
JSON
{
"name": "ixp-server",
"version": "1.0.1",
"description": "A comprehensive SDK for building Intent Exchange Protocol (IXP) servers with ease",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli.mjs",
"require": "./dist/cli.js",
"types": "./dist/cli.d.ts"
}
},
"bin": {
"ixp-server": "./dist/cli/index.js",
"create-ixp-server": "./dist/cli/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && tsc -p tsconfig.types.json && npm run build:examples",
"build:examples": "tsc -p tsconfig.examples.json",
"example:basic": "node examples-dist/basic-server.js",
"dev": "tsc --watch",
"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,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json,md}\"",
"typecheck": "tsc --noEmit",
"docs": "typedoc src/index.ts --out docs",
"docs:build": "typedoc src/index.ts --out docs --theme default",
"clean": "rm -rf dist coverage docs",
"setup": "node scripts/setup.js",
"release": "node scripts/release.js",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"prepublishOnly": "npm run build && npm test",
"postinstall": "husky install || true"
},
"keywords": [
"ixp",
"intent-exchange-protocol",
"server",
"sdk",
"intent-driven",
"component-rendering",
"express",
"typescript",
"api",
"framework"
],
"author": "IXP Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/toopi-ai/ixp-server-sdk.git"
},
"bugs": {
"url": "https://github.com/toopi-ai/ixp-server-sdk/issues"
},
"homepage": "https://github.com/toopi-ai/ixp-server-sdk#readme",
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"zod": "^3.22.4",
"uuid": "^9.0.1",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"fs-extra": "^11.2.0",
"yaml": "^2.3.4",
"ajv": "^8.12.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"audit-ci": "^6.6.1",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-security": "^2.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"peerDependencies": {
"express": "^4.18.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}