tabby-ai-panel 0.1.2

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,114 @@
1
+ {
2
+ "name": "tabby-ai-panel",
3
+ "version": "0.1.2",
4
+ "description": "An autonomous AI agent panel for Tabby: works across terminal tabs, keeps persistent, resumable sessions, and runs commands with reviewable approvals.",
5
+ "keywords": [
6
+ "tabby-plugin",
7
+ "tabby",
8
+ "terminal",
9
+ "ai",
10
+ "agent"
11
+ ],
12
+ "main": "dist/index.js",
13
+ "scripts": {
14
+ "build": "webpack --progress --color",
15
+ "watch": "TABBY_DEV=1 webpack --progress --color --watch",
16
+ "typecheck": "tsc --noEmit -p tsconfig.json",
17
+ "test": "node --import tsx --test \"tests/**/*.test.ts\"",
18
+ "link:tabby": "node scripts/link-plugin.mjs",
19
+ "pack": "node scripts/pack.mjs",
20
+ "prepublishOnly": "npm run build && npm test"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "license": "MIT",
26
+ "author": "Qianfan Jiang",
27
+ "homepage": "https://github.com/giejqf/tabby-ai-panel#readme",
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/giejqf/tabby-ai-panel.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/giejqf/tabby-ai-panel/issues"
34
+ },
35
+ "devDependencies": {
36
+ "@angular/animations": "^15.2.10",
37
+ "@angular/common": "^15.2.10",
38
+ "@angular/compiler": "^15.2.10",
39
+ "@angular/compiler-cli": "^15.2.10",
40
+ "@angular/core": "^15.2.10",
41
+ "@angular/forms": "^15.2.10",
42
+ "@angular/platform-browser": "^15.2.10",
43
+ "@babel/core": "^7.24.0",
44
+ "@ng-bootstrap/ng-bootstrap": "^14.2.0",
45
+ "@ngtools/webpack": "^15.2.10",
46
+ "@tabby-gang/to-string-loader": "^1.1.7-beta.2",
47
+ "@types/dompurify": "^3.0.5",
48
+ "@types/node": "^20.11.0",
49
+ "babel-loader": "^9.1.3",
50
+ "bootstrap": "^5.3.0",
51
+ "css-loader": "^6.10.0",
52
+ "dompurify": "^3.1.0",
53
+ "marked": "^12.0.0",
54
+ "rxjs": "^7.8.1",
55
+ "sass": "^1.71.0",
56
+ "sass-loader": "^14.1.0",
57
+ "source-map-loader": "^5.0.0",
58
+ "style-loader": "^3.3.4",
59
+ "tabby-core": "npm:tabby-core@*",
60
+ "tabby-settings": "npm:tabby-settings@*",
61
+ "tabby-terminal": "npm:tabby-terminal@*",
62
+ "tsx": "^4.23.13",
63
+ "typescript": "~4.9.5",
64
+ "webpack": "^5.90.0",
65
+ "webpack-cli": "^5.1.4"
66
+ },
67
+ "peerDependencies": {
68
+ "@angular/animations": "^15",
69
+ "@angular/common": "^15",
70
+ "@angular/core": "^15",
71
+ "@angular/forms": "^15",
72
+ "@angular/platform-browser": "^15",
73
+ "@ng-bootstrap/ng-bootstrap": "^14",
74
+ "rxjs": "^7",
75
+ "tabby-core": "*",
76
+ "tabby-settings": "*",
77
+ "tabby-terminal": "*"
78
+ },
79
+ "peerDependenciesMeta": {
80
+ "@angular/animations": {
81
+ "optional": true
82
+ },
83
+ "@angular/common": {
84
+ "optional": true
85
+ },
86
+ "@angular/core": {
87
+ "optional": true
88
+ },
89
+ "@angular/forms": {
90
+ "optional": true
91
+ },
92
+ "@angular/platform-browser": {
93
+ "optional": true
94
+ },
95
+ "@ng-bootstrap/ng-bootstrap": {
96
+ "optional": true
97
+ },
98
+ "rxjs": {
99
+ "optional": true
100
+ },
101
+ "tabby-core": {
102
+ "optional": true
103
+ },
104
+ "tabby-settings": {
105
+ "optional": true
106
+ },
107
+ "tabby-terminal": {
108
+ "optional": true
109
+ }
110
+ },
111
+ "publishConfig": {
112
+ "access": "public"
113
+ }
114
+ }