-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "scryfall-search",
"title": "Scryfall MTG Search",
"description": "Search for Magic: The Gathering cards via Scryfall",
"icon": "scryfall-search-icon.png",
"author": "fourjuaneight",
"license": "MIT",
"version": "1.1.0",
"main": "src/index.js",
"keywords": [
"scryfall",
"magic",
"mtg"
],
"categories": [
"Media",
"Web"
],
"commands": [
{
"name": "index",
"title": "Search Scryfall",
"subtitle": "MTG",
"description": "Search for Magic: The Gathering cards via Scryfall.",
"mode": "view"
}
],
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"dependencies": {
"@raycast/api": "^1.68.1",
"@types/node": "^20.8.10",
"node-fetch": "^3.3.2",
"uid": "^2.0.2"
},
"devDependencies": {
"@types/react": "^18.2.27",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"react-devtools": "^4.28.4",
"typescript": "^5.3.3"
}
}