-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 745 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 745 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
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "perplexity-export",
"version": "1.0.0",
"description": "Export Perplexity conversations with session persistence",
"main": "dist/index.js",
"bin": {
"perplexity-export": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"keywords": [
"perplexity",
"export",
"backup",
"playwright"
],
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"node-fetch": "^2.7.0",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.11",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}