-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 605 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 605 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "logseq-transcriber",
"version": "0.1.0",
"description": "Transcribe audio files directly within Logseq using the Deepgram API.",
"author": "Marijn Bent",
"license": "MIT",
"scripts": {
"dev": "parcel index.html --public-url ./",
"build": "parcel build --public-url . --no-source-maps index.html"
},
"dependencies": {
"@logseq/libs": "^0.2.1"
},
"devDependencies": {
"buffer": "^6.0.3",
"parcel": "^2.9.3"
},
"logseq": {
"id": "logseq-transcriber",
"title": "Audio Transcriber",
"icon": "./icon.png",
"main": "dist/index.html"
}
}