forked from simwai/perplexity-ai-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.12 KB
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
{
"name": "perplexity-history-export",
"version": "1.1.0",
"license": "PolyForm-Noncommercial-1.0.0",
"type": "module",
"author": "simwai",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"build:exe": "node scripts/build-exe.js && npm run format",
"release": "release-it",
"toc": "node scripts/update-toc.js",
"type-check": "tsc --noEmit",
"format": "oxlint --fix --format=stylish && oxfmt",
"format-type-check": "pnpm exec concurrently \"pnpm type-check\" \"pnpm format\"",
"test": "vitest",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:e2e": "vitest run test/e2e",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --reporter=verbose",
"prepare": "husky",
"commitlint": "commitlint --edit",
"benchmark": "tsx src/benchmark.ts"
},
"dependencies": {
"@huggingface/transformers": "~3.5.0",
"@inquirer/prompts": "^8.5.0",
"@vscode/ripgrep": "^1.17.1",
"chalk": "^5.6.2",
"chromium-bidi": "^15.0.0",
"dotenv": "^17.2.4",
"inquirer": "^13.2.2",
"playwright-core": "^1.58.2",
"sanitize-filename": "^1.6.3",
"vectra": "^0.12.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@playwright/test": "^1.58.2",
"@release-it/conventional-changelog": "^10.0.6",
"@types/inquirer": "^9.0.9",
"@types/node": "^25.2.3",
"@types/sanitize-filename": "^1.1.28",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"concurrently": "^10.0.0",
"esbuild": "^0.27.4",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"madge": "^8.0.0",
"markdown-toc": "^1.2.0",
"msw": "^2.12.10",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"postject": "^1.0.0-alpha.6",
"release-it": "^19.2.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.ts": [
"oxlint --fix",
"oxfmt"
]
}
}