Dot_Files/.config/raycast/extensions/d0690d66-cc08-4222-845f-322583db3f4f/package.json

57 lines
1.4 KiB
JSON

{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "word-search",
"title": "Word Search",
"description": "Search for synonyms, antonyms and rhymes",
"icon": "command-icon.png",
"author": "rishabswift",
"contributors": [
"thomas"
],
"license": "MIT",
"commands": [
{
"name": "word-synonym-search",
"title": "Search Word Synonym",
"subtitle": "Datamuse",
"description": "Search for synonyms given a word",
"mode": "view"
},
{
"name": "word-antonym-search",
"title": "Search Word Antonym",
"subtitle": "Datamuse",
"description": "Search for antonyms given a word",
"mode": "view"
},
{
"name": "word-rhyme-search",
"title": "Search Word Rhyme",
"subtitle": "Datamuse",
"description": "Search for rhymes given a word",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.27.1",
"node-fetch": "^3.2.0"
},
"devDependencies": {
"@types/node": "~16.10.0",
"@types/react": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"react-devtools": "^4.19.2",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint"
}
}