Mirror of https://github.com/roostorg/coop-integration-example github.com/roostorg/coop-integration-example
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 45 lines 1.2 kB view raw
1{ 2 "name": "@roostorg/coop-integration-example", 3 "version": "2.0.1", 4 "description": "Example package to show how a custom integration and signal can be used in COOP this is meant to be a reference repository and provide basic determination", 5 "type": "module", 6 "main": "dist/index.js", 7 "types": "dist/index.d.ts", 8 "files": [ 9 "dist", 10 "README.md", 11 "roost-example-logo.png", 12 "roost-example-with-background.png" 13 ], 14 "scripts": { 15 "build": "tsc", 16 "prepare": "npm run build", 17 "prepublishOnly": "npm run build" 18 }, 19 "keywords": [ 20 "coop", 21 "integration", 22 "plugin", 23 "example" 24 ], 25 "author": "Roostorg", 26 "license": "Apache-2.0", 27 "repository": { 28 "type": "git", 29 "url": "https://github.com/roostorg/coop-integration-example.git" 30 }, 31 "bugs": { 32 "url": "https://github.com/roostorg/coop-integration-example/issues" 33 }, 34 "homepage": "https://github.com/roostorg/coop-integration-example#readme", 35 "peerDependencies": { 36 "@roostorg/types": ">=2.0.0" 37 }, 38 "devDependencies": { 39 "@roostorg/types": "^2.0.0", 40 "typescript": "^5.0.0" 41 }, 42 "engines": { 43 "node": ">=18" 44 } 45}