-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "dbtc",
"title": "dbtc",
"description": "Commands for dbt Cloud",
"icon": "dbt-icon.png",
"author": "b-per",
"license": "MIT",
"preferences": [
{
"name": "dbtCloudAdminAPIKey",
"title": "dbt Cloud Admin API Key",
"description": "dbt Cloud Admin API Key",
"type": "password",
"required": true
},
{
"name": "dbtCloudMetadataAPIKey",
"title": "dbt Cloud Metadata API Key",
"description": "dbt Cloud Metadata API Key",
"type": "password",
"required": true
},
{
"name": "dbtCloudAccountID",
"title": "dbt Cloud Account ID",
"description": "Account ID of you dbt Cloud account",
"type": "textfield",
"required": true
},
{
"name": "dbtCloudProjectID",
"title": "dbt Cloud Project ID",
"description": "Project ID of your dbt Cloud project",
"type": "textfield",
"required": true
}
],
"commands": [
{
"name": "showModelDetailsFavoriteProject",
"title": "Show Models Details - Favorite Project",
"description": "Template for showing a static list and a detail view",
"mode": "view"
},
{
"name": "showModelDetailsAllProjects",
"title": "Show Models Details - All Projects",
"description": "Template for showing a static list and a detail view",
"mode": "view"
}
],
"dependencies": {
"@raycast/api": "^1.38.1",
"@raycast/utils": "^1.0.6",
"node-fetch": "^3.2.9",
"tablemark": "^3.0.0"
},
"devDependencies": {
"@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"
}
}