-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "@pivanov/cursor-cli",
"version": "0.1.0",
"description": "Cursor agent in your terminal - interactive REPL on the Cursor TypeScript SDK.",
"license": "MIT",
"author": "Pavel Ivanov <iweb.ivanov@gmail.com>",
"type": "module",
"bin": {
"cursor-cli": "./src/cli.ts"
},
"files": [
"src",
"logo.txt"
],
"keywords": [
"cursor",
"cursor-sdk",
"cli",
"repl",
"agent",
"ink",
"terminal"
],
"scripts": {
"dev": "printf '\\033[1A\\033[2K\\r' ; dotenv -e .env.local -- tsx src/cli.ts",
"start": "printf '\\033[1A\\033[2K\\r' ; dotenv -e .env.local -- tsx src/cli.ts",
"install:local": "bun run scripts/install-link.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"knip": "knip",
"knip:fix": "knip --fix",
"lint": "biome check . && tsc --noEmit -p tsconfig.json && knip",
"lint:fix": "biome check --write . && knip --fix"
},
"dependencies": {
"@cursor/february": "1.0.7",
"cli-highlight": "^2.1.11",
"diff": "^9.0.0",
"figures": "^6.1.0",
"ink": "^7",
"marked": "^18.0.2",
"react": "^19",
"react-dom": "^19",
"wrap-ansi": "^10.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@types/node": "^22.5.5",
"@types/react": "^19",
"dotenv-cli": "^11.0.0",
"knip": "^6.7.0",
"tsx": "^4.21.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
}
}