@osovv/vvcode 0.4.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,56 @@
1
+ {
2
+ "name": "@osovv/vvcode",
3
+ "version": "0.4.1",
4
+ "description": "Packaged CLI for launching OpenCode with vvcode runtime semantics.",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/osovv/vvcode",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/osovv/vvcode.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/osovv/vvcode/issues"
13
+ },
14
+ "type": "module",
15
+ "packageManager": "bun@1.3.8",
16
+ "files": [
17
+ "bin",
18
+ "dist"
19
+ ],
20
+ "bin": {
21
+ "vvcode": "./bin/vvcode"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "engines": {
27
+ "bun": ">=1.3.8"
28
+ },
29
+ "scripts": {
30
+ "build": "bun build ./src/cli/vvcode-entry.ts --target bun --format esm --outfile ./dist/vvcode.js",
31
+ "prepack": "bun run build",
32
+ "cli": "bun run build && bun run ./bin/vvcode",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "vitest run",
35
+ "test:unit": "vitest run tests/unit",
36
+ "test:integration": "vitest run tests/integration",
37
+ "test:scenarios": "vitest run tests/scenarios"
38
+ },
39
+ "dependencies": {
40
+ "@opencode-ai/sdk": "1.3.13",
41
+ "citty": "^0.2.2",
42
+ "opencode-ai": "1.3.13"
43
+ },
44
+ "devDependencies": {
45
+ "@types/node": "25.5.0",
46
+ "typescript": "5.9.3",
47
+ "vitest": "4.1.2"
48
+ },
49
+ "keywords": [
50
+ "vvcode",
51
+ "bun",
52
+ "cli",
53
+ "opencode",
54
+ "agentic"
55
+ ]
56
+ }