sphereai-cli 1.0.22 → 1.0.24

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 CHANGED
@@ -1,52 +1,51 @@
1
- {
2
- "name": "sphereai-cli",
3
- "version": "1.0.22",
4
- "description": "CLI tool for interacting with the SphereAI API",
5
- "main": "dist/index.js",
6
- "bin": {
7
- "sphereai": "dist/index.js"
8
- },
9
- "scripts": {
10
- "build": "tsc",
11
- "build:prod": "node build.js",
12
- "dev": "tsc --watch",
13
- "start": "node dist/index.js",
14
- "clean": "rimraf dist"
15
- },
16
- "keywords": [
17
- "cli",
18
- "sphereai",
19
- "ai",
20
- "api",
21
- "rest"
22
- ],
23
- "author": "Nava Tech For Business",
24
- "license": "ISC",
25
- "dependencies": {
26
- "axios": "^1.6.7",
27
- "chalk": "^4.1.2",
28
- "cli-table3": "^0.6.3",
29
- "commander": "^12.0.0",
30
- "conf": "^10.2.0",
31
- "dotenv": "^17.2.3",
32
- "express": "^4.18.2",
33
- "open": "^8.4.2",
34
- "ora": "^5.4.1"
35
- },
36
- "devDependencies": {
37
- "@types/express": "^4.17.21",
38
- "@types/node": "^20.11.17",
39
- "esbuild": "^0.24.0",
40
- "javascript-obfuscator": "^4.1.1",
41
- "rimraf": "^5.0.5",
42
- "typescript": "^5.3.3"
43
- },
44
- "engines": {
45
- "node": ">=14.0.0"
46
- },
47
- "files": [
48
- "dist",
49
- ".env",
50
- ".sphereignore"
51
- ]
52
- }
1
+ {
2
+ "name": "sphereai-cli",
3
+ "version": "1.0.24",
4
+ "description": "CLI tool for interacting with the SphereAI API",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "sphereai": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "build:prod": "node build.js",
12
+ "dev": "tsc --watch",
13
+ "start": "node dist/index.js",
14
+ "clean": "rimraf dist"
15
+ },
16
+ "keywords": [
17
+ "cli",
18
+ "sphereai",
19
+ "ai",
20
+ "api",
21
+ "rest"
22
+ ],
23
+ "author": "Nava Tech For Business",
24
+ "license": "ISC",
25
+ "dependencies": {
26
+ "axios": "^1.6.7",
27
+ "chalk": "^4.1.2",
28
+ "cli-table3": "^0.6.3",
29
+ "commander": "^12.0.0",
30
+ "conf": "^10.2.0",
31
+ "dotenv": "^17.2.3",
32
+ "express": "^4.18.2",
33
+ "open": "^8.4.2",
34
+ "ora": "^5.4.1"
35
+ },
36
+ "devDependencies": {
37
+ "@types/express": "^4.17.21",
38
+ "@types/node": "^20.11.17",
39
+ "esbuild": "^0.24.0",
40
+ "javascript-obfuscator": "^4.1.1",
41
+ "rimraf": "^5.0.5",
42
+ "typescript": "^5.3.3"
43
+ },
44
+ "engines": {
45
+ "node": ">=14.0.0"
46
+ },
47
+ "files": [
48
+ "dist",
49
+ ".env"
50
+ ]
51
+ }
package/.sphereignore DELETED
@@ -1,46 +0,0 @@
1
- # .sphereignore - Files and directories to exclude from tracking
2
- # Similar to .gitignore syntax
3
-
4
- # Dependencies
5
- node_modules/
6
- bower_components/
7
-
8
- # Build outputs
9
- dist/
10
- build/
11
- out/
12
- *.js.map
13
-
14
- # Environment variables
15
- .env
16
- .env.*
17
-
18
- # Logs
19
- *.log
20
- logs/
21
- npm-debug.log*
22
-
23
- # IDE / Editor
24
- .vscode/
25
- .idea/
26
- *.swp
27
- *.swo
28
- *~
29
-
30
- # OS files
31
- .DS_Store
32
- Thumbs.db
33
- Desktop.ini
34
-
35
- # Testing
36
- coverage/
37
- .nyc_output/
38
-
39
- # Temporary files
40
- *.tmp
41
- *.temp
42
- .cache/
43
-
44
- # Git
45
- .git/
46
- .gitignore