snow-ai 0.5.7 → 0.5.9

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 (3) hide show
  1. package/bundle/cli.mjs +136221 -134559
  2. package/bundle/package.json +133 -0
  3. package/package.json +1 -1
@@ -0,0 +1,133 @@
1
+ {
2
+ "name": "snow-ai",
3
+ "version": "0.5.9",
4
+ "description": "Intelligent Command Line Assistant powered by AI",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "snow": "bundle/cli.mjs"
8
+ },
9
+ "type": "module",
10
+ "keywords": [
11
+ "cli",
12
+ "ai",
13
+ "assistant",
14
+ "bot",
15
+ "terminal"
16
+ ],
17
+ "author": "Mufasa",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/MayDay-wpf/snow-cli.git"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/MayDay-wpf/snow-cli/issues"
24
+ },
25
+ "homepage": "https://github.com/MayDay-wpf/snow-cli#readme",
26
+ "engines": {
27
+ "node": ">=16",
28
+ "npm": ">=8.3.0"
29
+ },
30
+ "scripts": {
31
+ "build": "tsc && node build.mjs",
32
+ "build:ts": "tsc",
33
+ "build:bundle": "node build.mjs",
34
+ "dev": "tsc --watch",
35
+ "start": "node bundle/cli.mjs",
36
+ "start:dev": "node build.mjs && node bundle/cli.mjs",
37
+ "link": "npm run build && npm link",
38
+ "unlink": "npm unlink -g snow-ai",
39
+ "prepublishOnly": "npm run build",
40
+ "postinstall": "node scripts/postinstall.cjs",
41
+ "test": "prettier --check . && xo && ava",
42
+ "lint": "xo",
43
+ "format": "prettier --write ."
44
+ },
45
+ "files": [
46
+ "bundle",
47
+ "scripts"
48
+ ],
49
+ "devDependencies": {
50
+ "@inkjs/ui": "^2.0.0",
51
+ "@modelcontextprotocol/sdk": "^1.17.3",
52
+ "@sindresorhus/tsconfig": "^3.0.1",
53
+ "@types/diff": "^7.0.2",
54
+ "@types/fs-extra": "^11.0.4",
55
+ "@types/markdown-it": "^14.1.2",
56
+ "@types/marked-terminal": "^6.1.1",
57
+ "@types/pdf-parse": "^1.1.5",
58
+ "@types/prettier": "^2.7.3",
59
+ "@types/react": "^18.0.32",
60
+ "@types/sharp": "^0.32.0",
61
+ "@types/sql.js": "^1.4.9",
62
+ "@types/ws": "^8.5.8",
63
+ "@vdemedes/prettier-config": "^2.0.1",
64
+ "@vercel/ncc": "^0.38.4",
65
+ "ava": "^5.2.0",
66
+ "chalk": "^5.2.0",
67
+ "chokidar": "^4.0.3",
68
+ "cli-highlight": "^2.1.11",
69
+ "diff": "^8.0.2",
70
+ "esbuild": "^0.27.0",
71
+ "esbuild-plugin-copy": "^2.1.1",
72
+ "eslint-config-xo-react": "^0.27.0",
73
+ "eslint-plugin-react": "^7.32.2",
74
+ "eslint-plugin-react-hooks": "^4.6.0",
75
+ "fzf": "^0.5.2",
76
+ "gray-matter": "^4.0.3",
77
+ "http-proxy-agent": "^7.0.2",
78
+ "https-proxy-agent": "^7.0.6",
79
+ "ignore": "^7.0.5",
80
+ "ink": "^5.2.1",
81
+ "ink-gradient": "^3.0.0",
82
+ "ink-select-input": "^6.2.0",
83
+ "ink-spinner": "^5.0.0",
84
+ "ink-testing-library": "^3.0.0",
85
+ "ink-text-input": "^6.0.0",
86
+ "mammoth": "^1.11.0",
87
+ "markdown-it": "^14.1.0",
88
+ "markdown-it-terminal": "^0.4.0",
89
+ "marked": "^15.0.6",
90
+ "marked-terminal": "^7.3.0",
91
+ "meow": "^11.0.0",
92
+ "pdf-parse": "^2.4.5",
93
+ "pptx-parser": "^1.1.7-beta.9",
94
+ "prettier": "^2.8.7",
95
+ "puppeteer-core": "^24.25.0",
96
+ "react": "^18.2.0",
97
+ "sql.js": "^1.13.0",
98
+ "string-width": "^7.2.0",
99
+ "tiktoken": "^1.0.22",
100
+ "ts-node": "^10.9.1",
101
+ "typescript": "^5.0.3",
102
+ "undici": "^7.16.0",
103
+ "ws": "^8.14.2",
104
+ "xlsx": "^0.18.5",
105
+ "xo": "^0.53.1"
106
+ },
107
+ "overrides": {
108
+ "glob": "^10.0.0",
109
+ "rimraf": "^5.0.0"
110
+ },
111
+ "ava": {
112
+ "extensions": {
113
+ "ts": "module",
114
+ "tsx": "module"
115
+ },
116
+ "nodeArguments": [
117
+ "--loader=ts-node/esm"
118
+ ]
119
+ },
120
+ "xo": {
121
+ "extends": "xo-react",
122
+ "prettier": true,
123
+ "rules": {
124
+ "react/prop-types": "off",
125
+ "react-hooks/rules-of-hooks": "error",
126
+ "react-hooks/exhaustive-deps": "warn"
127
+ }
128
+ },
129
+ "prettier": "@vdemedes/prettier-config",
130
+ "optionalDependencies": {
131
+ "sharp": "^0.34.5"
132
+ }
133
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-ai",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "description": "Intelligent Command Line Assistant powered by AI",
5
5
  "license": "MIT",
6
6
  "bin": {