forked from Symbo-gif/Perplexity-Enigma-CLI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.87 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
{
"name": "perplexity-enigma",
"version": "1.0.0",
"description": "Perplexity - Enigma: Enterprise-grade AI-powered coding assistant for Windows PowerShell with real-time search, multi-model routing, and structured reasoning",
"type": "module",
"main": "./dist/index.js",
"bin": {
"enigma": "./dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"build:bin": "npm run build && pkg . -t node18-win-x64,node18-linux-x64,node18-macos-x64 --out-path bin",
"test": "vitest",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"version": "npm run build"
},
"keywords": [
"perplexity",
"enigma",
"cli",
"ai",
"agent",
"coding-assistant",
"powershell",
"windows"
],
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/Symbo-gif/Perplexity-Enigma-CLI.git"
},
"homepage": "https://github.com/Symbo-gif/Perplexity-Enigma-CLI",
"bugs": {
"url": "https://github.com/Symbo-gif/Perplexity-Enigma-CLI/issues"
},
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"diff-match-patch": "^1.0.5",
"dotenv": "^16.3.0",
"ignore": "^5.3.0",
"ora": "^8.0.0",
"readline-sync": "^1.4.10",
"yaml": "^2.3.0"
},
"devDependencies": {
"@types/diff-match-patch": "^1.0.36",
"@types/node": "^20.0.0",
"@types/readline-sync": "^1.4.8",
"@vitest/coverage-v8": "^1.6.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"VERSIONING.md"
]
}