-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.49 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
{
"name": "pilot-ai-cli",
"version": "1.0.0",
"description": "AI infrastructure platform — CLI untuk vibe coding yang auto-rotasi 9 provider AI gratis, tanpa kehilangan memory.",
"type": "module",
"main": "./dist/cli/index.js",
"files": [
"dist",
"bin"
],
"bin": {
"pilot": "./bin/pilot.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node bin/pilot.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"figures": "^6.1.0",
"ink": "^5.1.0",
"ink-spinner": "^5.0.0",
"react": "^18.2.0",
"strip-ansi": "^7.1.0",
"undici": "^6.21.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.57.0",
"prettier": "^3.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": ["ai", "cli", "vibe-coding", "coding-assistant", "multi-provider"],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Dzareldeveloper/Pilot.git"
},
"homepage": "https://github.com/Dzareldeveloper/Pilot#readme"
}