@aiiware/aii 0.1.2

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.
Files changed (4) hide show
  1. package/LICENSE +33 -0
  2. package/README.md +146 -0
  3. package/bin/aii +767 -0
  4. package/package.json +71 -0
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@aiiware/aii",
3
+ "version": "0.1.2",
4
+ "description": "AI-powered CLI assistant for terminal productivity",
5
+ "author": "AiiWare <support@aiiware.com>",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "homepage": "https://aiiware.com",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/aiiware/aii-cli-ts"
11
+ },
12
+ "keywords": [
13
+ "ai",
14
+ "cli",
15
+ "assistant",
16
+ "llm",
17
+ "claude",
18
+ "gpt",
19
+ "terminal"
20
+ ],
21
+ "bin": {
22
+ "aii": "./bin/aii"
23
+ },
24
+ "files": [
25
+ "bin/",
26
+ "LICENSE",
27
+ "README.md"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsc && node esbuild.config.mjs",
31
+ "build:watch": "tsc --watch",
32
+ "dev": "ts-node src/index.ts",
33
+ "test": "jest",
34
+ "test:watch": "jest --watch",
35
+ "test:coverage": "jest --coverage",
36
+ "lint": "eslint src/ --ext .ts",
37
+ "lint:fix": "eslint src/ --ext .ts --fix",
38
+ "format": "prettier --write \"src/**/*.ts\"",
39
+ "clean": "rm -rf dist bin",
40
+ "prepublishOnly": "npm run clean && npm run build"
41
+ },
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "dependencies": {
46
+ "@modelcontextprotocol/sdk": "^1.25.1",
47
+ "chalk": "^5.3.0",
48
+ "cli-highlight": "^2.1.11",
49
+ "commander": "^12.1.0",
50
+ "marked": "^15.0.4",
51
+ "marked-terminal": "^7.2.1",
52
+ "ora": "^8.1.1",
53
+ "ws": "^8.18.0",
54
+ "yaml": "^2.6.1",
55
+ "zod": "^4.2.1"
56
+ },
57
+ "devDependencies": {
58
+ "@types/jest": "^29.5.14",
59
+ "@types/node": "^22.10.2",
60
+ "@types/ws": "^8.5.13",
61
+ "@typescript-eslint/eslint-plugin": "^8.18.1",
62
+ "@typescript-eslint/parser": "^8.18.1",
63
+ "esbuild": "^0.24.0",
64
+ "eslint": "^9.17.0",
65
+ "jest": "^29.7.0",
66
+ "prettier": "^3.4.2",
67
+ "ts-jest": "^29.2.5",
68
+ "ts-node": "^10.9.2",
69
+ "typescript": "^5.7.2"
70
+ }
71
+ }