-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.3 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "infakt",
"title": "InFakt",
"description": "Search, create and manage invoices, clients and products in inFakt directly from Raycast.",
"icon": "infakt-icon.png",
"author": "teziovsky",
"categories": [
"Finance",
"Productivity"
],
"license": "MIT",
"commands": [
{
"name": "search_invoices",
"title": "Search Invoices",
"subtitle": "inFakt",
"description": "Search invoices by number or client.",
"mode": "view"
},
{
"name": "create_invoice",
"title": "Create Invoice",
"subtitle": "inFakt",
"description": "Create a new invoice for specific client.",
"mode": "view"
},
{
"name": "search_clients",
"title": "Search Clients",
"subtitle": "inFakt",
"description": "Search clients by company name.",
"mode": "view"
},
{
"name": "search_products",
"title": "Search Products",
"subtitle": "inFakt",
"description": "Search products by name.",
"mode": "view"
},
{
"name": "create_product",
"title": "Create Product",
"subtitle": "inFakt",
"description": "Create a new product with automatically calculated prices.",
"mode": "view"
}
],
"preferences": [
{
"name": "xApiKey",
"type": "password",
"required": true,
"title": "X-inFakt-ApiKey",
"description": "X-inFakt-ApiKey",
"placeholder": "Your X-inFakt-ApiKey"
}
],
"dependencies": {
"@raycast/api": "^1.63.0",
"@raycast/utils": "^1.10.1",
"date-fns": "^2.30.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.10.1",
"@types/react": "18.2.39",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish",
"pull-contributions": "npx @raycast/api@latest pull-contributions"
}
}