@elizaos/plugin-story
Version:
Story Protocol plugin for elizaOS - enables IP registration, licensing, and terms attachment on Story Protocol
86 lines (85 loc) • 2.18 kB
JSON
{
"name": "@elizaos/plugin-story",
"version": "1.0.0",
"description": "Story Protocol plugin for elizaOS - enables IP registration, licensing, and terms attachment on Story Protocol",
"author": "elizaOS Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elizaos/plugin-story.git"
},
"keywords": [
"elizaos",
"story-protocol",
"blockchain",
"ip",
"licensing",
"nft",
"web3",
"intellectual-property"
],
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@elizaos/core": "latest",
"@pinata/sdk": "^2.1.0",
"@story-protocol/core-sdk": "1.2.0-rc.3"
},
"devDependencies": {
"@types/node": "^22.10.1",
"tsup": "8.3.5",
"prettier": "^3.0.0",
"bun": "^1.2.15",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "prettier --write ./src",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"peerDependencies": {
"whatwg-url": "7.1.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"STORY_PRIVATE_KEY": {
"type": "string",
"description": "Story Protocol private key for authentication",
"required": true,
"sensitive": true
},
"PINATA_JWT": {
"type": "string",
"description": "Pinata JWT token for IPFS storage",
"required": true,
"sensitive": true
}
}
}
}