lavista 0.1.0

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.
@@ -0,0 +1,111 @@
1
+ Bundled license information:
2
+
3
+ react/cjs/react.production.js:
4
+ /**
5
+ * @license React
6
+ * react.production.js
7
+ *
8
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
9
+ *
10
+ * This source code is licensed under the MIT license found in the
11
+ * LICENSE file in the root directory of this source tree.
12
+ */
13
+
14
+ react/cjs/react.development.js:
15
+ /**
16
+ * @license React
17
+ * react.development.js
18
+ *
19
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
20
+ *
21
+ * This source code is licensed under the MIT license found in the
22
+ * LICENSE file in the root directory of this source tree.
23
+ */
24
+
25
+ react-reconciler/cjs/react-reconciler-constants.production.js:
26
+ /**
27
+ * @license React
28
+ * react-reconciler-constants.production.js
29
+ *
30
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
31
+ *
32
+ * This source code is licensed under the MIT license found in the
33
+ * LICENSE file in the root directory of this source tree.
34
+ */
35
+
36
+ react-reconciler/cjs/react-reconciler-constants.development.js:
37
+ /**
38
+ * @license React
39
+ * react-reconciler-constants.development.js
40
+ *
41
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
42
+ *
43
+ * This source code is licensed under the MIT license found in the
44
+ * LICENSE file in the root directory of this source tree.
45
+ */
46
+
47
+ scheduler/cjs/scheduler.production.js:
48
+ /**
49
+ * @license React
50
+ * scheduler.production.js
51
+ *
52
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
53
+ *
54
+ * This source code is licensed under the MIT license found in the
55
+ * LICENSE file in the root directory of this source tree.
56
+ */
57
+
58
+ scheduler/cjs/scheduler.development.js:
59
+ /**
60
+ * @license React
61
+ * scheduler.development.js
62
+ *
63
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
64
+ *
65
+ * This source code is licensed under the MIT license found in the
66
+ * LICENSE file in the root directory of this source tree.
67
+ */
68
+
69
+ react-reconciler/cjs/react-reconciler.production.js:
70
+ /**
71
+ * @license React
72
+ * react-reconciler.production.js
73
+ *
74
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
75
+ *
76
+ * This source code is licensed under the MIT license found in the
77
+ * LICENSE file in the root directory of this source tree.
78
+ */
79
+
80
+ react-reconciler/cjs/react-reconciler.development.js:
81
+ /**
82
+ * @license React
83
+ * react-reconciler.development.js
84
+ *
85
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
86
+ *
87
+ * This source code is licensed under the MIT license found in the
88
+ * LICENSE file in the root directory of this source tree.
89
+ */
90
+
91
+ react/cjs/react-jsx-runtime.production.js:
92
+ /**
93
+ * @license React
94
+ * react-jsx-runtime.production.js
95
+ *
96
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
97
+ *
98
+ * This source code is licensed under the MIT license found in the
99
+ * LICENSE file in the root directory of this source tree.
100
+ */
101
+
102
+ react/cjs/react-jsx-runtime.development.js:
103
+ /**
104
+ * @license React
105
+ * react-jsx-runtime.development.js
106
+ *
107
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
108
+ *
109
+ * This source code is licensed under the MIT license found in the
110
+ * LICENSE file in the root directory of this source tree.
111
+ */
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "lavista",
3
+ "version": "0.1.0",
4
+ "description": "Claude executes. Astra reviews. A fresh session takes the next step.",
5
+ "license": "MIT",
6
+ "author": "takuma-shishido",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/takuma-shishido/lavista.git"
10
+ },
11
+ "homepage": "https://github.com/takuma-shishido/lavista#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/takuma-shishido/lavista/issues"
14
+ },
15
+ "keywords": [
16
+ "claude-code",
17
+ "codex",
18
+ "ai-agent",
19
+ "cli",
20
+ "tui"
21
+ ],
22
+ "type": "module",
23
+ "bin": {
24
+ "lavista": "dist/cli.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "README.md",
29
+ "LICENSE"
30
+ ],
31
+ "engines": {
32
+ "node": ">=22.12"
33
+ },
34
+ "os": [
35
+ "darwin",
36
+ "linux"
37
+ ],
38
+ "scripts": {
39
+ "build": "node build.mjs",
40
+ "check": "tsc -p tsconfig.test.json --noEmit",
41
+ "test": "tsc -p tsconfig.test.json && node --test .test-build/tests/*.test.js",
42
+ "start": "node dist/cli.js",
43
+ "prepack": "npm run build",
44
+ "prepublishOnly": "npm run check && npm test"
45
+ },
46
+ "devDependencies": {
47
+ "@anthropic-ai/claude-agent-sdk": "^0.3.281",
48
+ "@commander-js/extra-typings": "^15.0.0",
49
+ "@inquirer/prompts": "^8.7.2",
50
+ "@types/node": "^22.0.0",
51
+ "@types/react": "^19.3.0",
52
+ "@types/write-file-atomic": "^4.0.3",
53
+ "commander": "^15.0.0",
54
+ "esbuild": "^0.28.2",
55
+ "execa": "^10.0.1",
56
+ "ink": "^7.1.1",
57
+ "ink-testing-library": "^4.0.0",
58
+ "react": "^19.3.0",
59
+ "string-width": "^8.2.2",
60
+ "strip-ansi": "^7.2.0",
61
+ "typescript": "^5.9.0",
62
+ "write-file-atomic": "^7.0.1",
63
+ "zod": "^4.6.5"
64
+ }
65
+ }