-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.54 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"version": "1.1.0",
"name": "gradient-generator",
"title": "Gradient Generator",
"description": "Create, preview, randomize, save and export gradients, using them in your next project.",
"icon": "icon.png",
"author": "smcnab1",
"contributors": [],
"categories": [
"Productivity"
],
"license": "MIT",
"platforms": [
"macOS"
],
"commands": [
{
"name": "create-gradient",
"title": "Create Gradient",
"subtitle": "Gradient Generator",
"description": "Create a gradient and preview it.",
"mode": "view"
},
{
"name": "random-gradient",
"title": "Random Gradient",
"subtitle": "Gradient Generator",
"description": "Show a random gradient with options for 2 or 3 stops.",
"mode": "view"
},
{
"name": "saved-gradients",
"title": "Saved Gradients",
"subtitle": "Gradient Generator",
"description": "View and manage saved gradients.",
"mode": "view"
}
],
"preferences": [
{
"name": "svgExportDirectory",
"type": "directory",
"required": true,
"title": "SVG Export Directory",
"description": "Choose the directory where SVG files will be saved",
"default": "~/Downloads"
},
{
"name": "pngExportDirectory",
"type": "directory",
"required": true,
"title": "PNG Export Directory",
"description": "Choose the directory where PNG files will be saved",
"default": "~/Downloads"
},
{
"name": "tailwindOutputMode",
"type": "dropdown",
"required": false,
"title": "Tailwind Output Mode",
"description": "Choose default Tailwind output format",
"default": "utility",
"data": [
{
"title": "Utility Classes (bg-[...])",
"value": "utility"
},
{
"title": "Raw CSS",
"value": "css"
}
]
}
],
"dependencies": {
"@raycast/api": "1.102.4",
"@raycast/utils": "2.2.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/node": "^20.14.11",
"@types/react": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.6.2",
"typescript": "^4.9.0"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
}
}