-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.06 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
102
103
104
105
106
107
108
109
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "notion_researcher",
"title": "Notion Researcher",
"description": "An extension to supercharge your research workflow with Notion",
"icon": "command_icon.png",
"author": "raz_gaon",
"license": "MIT",
"categories": [
"Productivity",
"Applications"
],
"preferences": [
{
"name": "notionApiKey",
"title": "Notion Token",
"placeholder": "Your Notion api token...",
"description": "Notion token to allow access to the database",
"type": "password",
"required": true
},
{
"name": "openaiApiKey",
"title": "OpenAI Key",
"placeholder": "Your OpenAI API Key...",
"description": "[Optional]: Used to generate helpful explanations to understand the paper",
"type": "textfield",
"required": false
},
{
"name": "readerApiKey",
"title": "Readwise Reader Key",
"placeholder": "Your Readwise Reader Key...",
"description": "[Optional]: Used to add the pdfs to Readwise Reader",
"type": "textfield",
"required": false
}
],
"commands": [
{
"name": "addPaper",
"icon": "command_icon.png",
"title": "Add Research Papers",
"description": "Add a research paper from Arxiv to a Notion database with metadata, references, and explanations.",
"mode": "view",
"preferences": [
{
"name": "databaseKey",
"title": "Notion Database Key",
"placeholder": "Your Database Key...",
"description": "Notion database identifier",
"type": "textfield",
"required": true
}
]
},
{
"name": "createDatabase",
"icon": "command_icon.png",
"title": "Create Research Database",
"description": "Create the database to hold the research papers.",
"mode": "view"
},
{
"name": "addConcept",
"icon": "command_icon.png",
"title": "Add Concept to Database",
"description": "Add a concept explanation to Database",
"mode": "view",
"preferences": [
{
"name": "conceptDatabaseKey",
"title": "Notion Concepts Database Key",
"placeholder": "Your Database Key...",
"description": "Notion database identifier",
"type": "textfield",
"required": true
}
]
}
],
"dependencies": {
"@notionhq/client": "^2.2.13",
"@raycast/api": "^1.58.1",
"@raycast/utils": "^1.10.0",
"@tryfabric/martian": "^1.2.4",
"arxivjs": "^0.0.11",
"got": "^11.8.2",
"notion-types": "^6.16.0",
"openai": "^4.8.0",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.6",
"@types/node": "18.8.3",
"@types/react": "18.0.9",
"dotenv": "^16.3.1",
"eslint": "^7.32.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": "npx @raycast/api@latest publish"
}
}