-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.02 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.02 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cursor-history",
"version": "0.15.0",
"description": "The ultimate CLI tool and library to browse, search, export, migrate, and backup your Cursor AI chat history",
"type": "module",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"cursor-history": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js",
"require": "./dist/lib/index.cjs"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cursor",
"chat",
"history",
"ai",
"assistant",
"conversation",
"export",
"backup",
"restore",
"migrate",
"cli",
"developer",
"tools",
"devtools",
"productivity",
"code",
"llm",
"vscode",
"sqlite",
"search",
"typescript",
"ide",
"editor"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/S2thend/cursor-history.git"
},
"bugs": {
"url": "https://github.com/S2thend/cursor-history/issues"
},
"homepage": "https://github.com/S2thend/cursor-history#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"better-sqlite3": "^12.5.0",
"commander": "^14.0.2",
"jszip": "^3.10.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16"
}
}