-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "plexcode",
"version": "0.1.0",
"description": "Perplexity AI terminal assistant — CLI coding and research tool",
"keywords": ["perplexity", "ai", "cli", "tui", "terminal", "research", "assistant"],
"license": "MIT",
"type": "module",
"bin": {
"plexcode": "./dist/cli.js"
},
"scripts": {
"build": "tsc && node scripts/fixup.js",
"dev": "tsx src/cli.tsx",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"ink": "^5.1.0",
"playwright": "^1.43.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/react": "^18.3.1",
"tsx": "^4.15.7",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/efekurucay/plexcode.git"
},
"homepage": "https://github.com/efekurucay/plexcode#readme",
"bugs": {
"url": "https://github.com/efekurucay/plexcode/issues"
}
}