-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.64 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
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
99
100
101
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "typer",
"title": "Typer - Custom Text Hotkey",
"description": "An extension for the lazy typer.\nAdd any text you type on a regular basis into commands. Give each command an alias and a hotkey, and save time on typing.",
"icon": "command-icon.png",
"author": "yaronschwimmer",
"categories": [
"Productivity"
],
"contributors": [
],
"license": "MIT",
"commands": [
{
"name": "command1",
"title": "Text 1",
"description": "Value of text 1",
"mode": "no-view",
"preferences": [{
"name": "typercommand1",
"title": "Text 1",
"description": "Text that will be typed into your screen",
"required": false,
"type": "textfield"
}]
},
{
"name": "command2",
"title": "Text 2",
"description": "Value of text 2",
"mode": "no-view",
"preferences": [{
"name": "typercommand2",
"title": "Text 2",
"description": "Text that will be typed into your screen",
"required": false,
"type": "textfield"
}]
},
{
"name": "command3",
"title": "Text 3",
"description": "Value of text 3",
"mode": "no-view",
"preferences": [{
"name": "typercommand3",
"title": "Text 3",
"description": "Text that will be typed into your screen",
"required": false,
"type": "textfield"
}]
},
{
"name": "command4",
"title": "Text 4",
"description": "Value of text 4",
"mode": "no-view",
"preferences": [{
"name": "typercommand4",
"title": "Text 4",
"description": "Text that will be typed into your screen",
"required": false,
"type": "textfield"
}]
},
{
"name": "command5",
"title": "Text 5",
"description": "Value of text 5",
"mode": "no-view",
"preferences": [{
"name": "typercommand5",
"title": "Text 5",
"description": "Text that will be typed into your screen",
"required": false,
"type": "textfield"
}]
}
],
"dependencies": {
"@raycast/api": "^1.46.1"
},
"devDependencies": {
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"@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",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}