Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/raycast

package.json

38 lines · 1.0 KB · JSON
{
	"name": "@kody/raycast",
	"version": "1.0.0",
	"private": false,
	"license": "MIT",
	"type": "module",
	"description": "Discover saved packages and invoke their exports from Raycast or other HTTP clients.",
	"exports": {
		".": "./src/index.ts",
		"./list-packages": "./src/list-packages.ts",
		"./get-package": "./src/get-package.ts",
		"./invoke": "./src/invoke.ts",
		"./guide": "./src/guide.ts"
	},
	"files": [
		"src",
		"README.md",
		"LICENSE",
		"community-icon.svg"
	],
	"scripts": {
		"test": "node --experimental-strip-types --test src/*.test.ts"
	},
	"kody": {
		"id": "raycast",
		"name": "Raycast",
		"description": "Discover saved packages and invoke their exports from Raycast or other HTTP clients.",
		"logo": "./community-icon.svg",
		"tags": [
			"raycast",
			"launcher",
			"packages",
			"community",
			"invocation"
		],
		"searchText": "raycast extension package discovery list packages get package invoke metadata package invocation token launcher alfred shortcuts curl HTTP client dryRun no personal tokens"
	}
}