ostacky 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/manifest.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "version": "0.0.1",
3
+ "repo": "JaimeHoracio/Ostacky",
4
+ "tag": "v0.0.1",
5
+ "agents": [
6
+ {
7
+ "name": "ostacky",
8
+ "file": "assets/agents/ostacky.md",
9
+ "description": "Agente principal de desarrollo con OpenCode",
10
+ "version": "0.0.1",
11
+ "sha256": null
12
+ }
13
+ ],
14
+ "commands": [
15
+ {
16
+ "name": "install-stack",
17
+ "file": "assets/commands/install-stack.md",
18
+ "description": "Instala el stack tecnológico del proyecto",
19
+ "version": "0.0.1",
20
+ "sha256": null
21
+ }
22
+ ]
23
+ }
package/package.json ADDED
@@ -0,0 +1,39 @@
1
+ {
2
+ "name": "ostacky",
3
+ "version": "0.0.1",
4
+ "description": "Instalador interactivo de agentes y comandos para OpenCode",
5
+ "type": "module",
6
+ "bin": {
7
+ "ostacky": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "dev": "bun run src/cli.ts",
11
+ "build": "bun build src/cli.ts --target=node --format=esm --outfile dist/cli.js && bun scripts/add-shebang.ts",
12
+ "start": "node dist/cli.js",
13
+ "test": "bun test",
14
+ "prepublishOnly": "bun run build"
15
+ },
16
+ "files": [
17
+ "dist/",
18
+ "assets/",
19
+ "manifest.json"
20
+ ],
21
+ "keywords": [
22
+ "opencode",
23
+ "installer",
24
+ "cli",
25
+ "agent"
26
+ ],
27
+ "license": "MIT",
28
+ "dependencies": {
29
+ "@clack/prompts": "^0.9.0",
30
+ "settings": "^0.1.1"
31
+ },
32
+ "devDependencies": {
33
+ "@types/bun": "latest",
34
+ "typescript": "^5.0.0"
35
+ },
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ }
39
+ }