shark-ai 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,85 @@
1
+ {
2
+ "name": "shark-ai",
3
+ "version": "0.0.1",
4
+ "description": "Shark AI: AI-Native Collaborative Development Tool powered by StackSpot AI and BMAD Method",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "shark": "dist/bin/shark.js"
8
+ },
9
+ "type": "module",
10
+ "engines": {
11
+ "node": ">=20.0.0"
12
+ },
13
+ "scripts": {
14
+ "dev": "tsup --watch",
15
+ "build": "tsup",
16
+ "test": "vitest run",
17
+ "shark": "node dist/bin/shark.js",
18
+ "prepublishOnly": "npm run build && npm test",
19
+ "preversion": "npm test",
20
+ "postversion": "git push && git push --tags"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "README.en.md",
26
+ "LICENSE",
27
+ "CHANGELOG.md"
28
+ ],
29
+ "keywords": [
30
+ "cli",
31
+ "ai",
32
+ "artificial-intelligence",
33
+ "stackspot",
34
+ "agent",
35
+ "multi-agent",
36
+ "collaboration",
37
+ "developer-tools",
38
+ "code-generation",
39
+ "auto-healing",
40
+ "bmad",
41
+ "workflow",
42
+ "orchestration",
43
+ "typescript",
44
+ "tui"
45
+ ],
46
+ "author": {
47
+ "name": "Miguel Arcangelo",
48
+ "email": "miguelarcjunior@gmail.com"
49
+ },
50
+ "repository": {
51
+ "type": "git",
52
+ "url": "https://github.com/miguelarcjr/shark-ai.git"
53
+ },
54
+ "bugs": {
55
+ "url": "https://github.com/miguelarcjr/shark-ai/issues"
56
+ },
57
+ "homepage": "https://github.com/miguelarcjr/shark-ai#readme",
58
+ "license": "MIT",
59
+ "publishConfig": {
60
+ "access": "public"
61
+ },
62
+ "dependencies": {
63
+ "@clack/prompts": "^0.7.0",
64
+ "@modelcontextprotocol/sdk": "^1.25.2",
65
+ "@types/diff": "^7.0.2",
66
+ "commander": "^11.1.0",
67
+ "diff": "^8.0.2",
68
+ "dotenv": "^16.3.1",
69
+ "fast-glob": "^3.3.3",
70
+ "keytar": "^7.9.0",
71
+ "marked": "^15.0.12",
72
+ "marked-terminal": "^7.3.0",
73
+ "picocolors": "^1.1.1",
74
+ "string-width": "^8.1.0",
75
+ "zod": "^3.25.76"
76
+ },
77
+ "devDependencies": {
78
+ "@types/keytar": "^4.4.0",
79
+ "@types/node": "^20.10.0",
80
+ "strip-ansi": "^7.1.2",
81
+ "tsup": "^8.0.1",
82
+ "typescript": "^5.3.2",
83
+ "vitest": "^1.0.0"
84
+ }
85
+ }