@flight-framework/cli 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@flight-framework/cli",
3
+ "version": "0.0.1",
4
+ "description": "Command-line interface for Flight Framework",
5
+ "keywords": [
6
+ "flight",
7
+ "cli",
8
+ "framework"
9
+ ],
10
+ "license": "MIT",
11
+ "author": "Flight Contributors",
12
+ "type": "module",
13
+ "bin": {
14
+ "flight": "./dist/bin.js"
15
+ },
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js"
20
+ }
21
+ },
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "dependencies": {
28
+ "cac": "^6.7.14",
29
+ "picocolors": "^1.1.0",
30
+ "prompts": "^2.4.2",
31
+ "@flight-framework/core": "0.0.1"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^22.0.0",
35
+ "@types/prompts": "^2.4.9",
36
+ "rimraf": "^6.0.0",
37
+ "tsup": "^8.0.0",
38
+ "typescript": "^5.7.0",
39
+ "vitest": "^2.0.0"
40
+ },
41
+ "peerDependencies": {
42
+ "vite": "^6.0.0 || ^7.0.0"
43
+ },
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "dev": "tsup --watch",
47
+ "test": "vitest run",
48
+ "lint": "eslint src/",
49
+ "clean": "rimraf dist"
50
+ }
51
+ }