@fairfox/polly 0.10.1 → 0.11.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.
- package/README.md +186 -0
- package/dist/tools/teach/src/cli.js +237 -13
- package/dist/tools/teach/src/cli.js.map +4 -4
- package/dist/tools/teach/src/index.js +89 -13
- package/dist/tools/teach/src/index.js.map +3 -3
- package/dist/tools/verify/src/cli.js +95 -16
- package/dist/tools/verify/src/cli.js.map +5 -5
- package/dist/tools/visualize/src/cli.js +89 -13
- package/dist/tools/visualize/src/cli.js.map +3 -3
- package/package.json +21 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fairfox/polly",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Multi-execution-context framework with reactive state and cross-context messaging for Chrome extensions, PWAs, and worker-based applications",
|
|
@@ -57,6 +57,14 @@
|
|
|
57
57
|
"./teach": {
|
|
58
58
|
"import": "./dist/tools/teach/src/index.js",
|
|
59
59
|
"types": "./dist/tools/teach/src/index.d.ts"
|
|
60
|
+
},
|
|
61
|
+
"./elysia": {
|
|
62
|
+
"import": "./dist/src/elysia/index.js",
|
|
63
|
+
"types": "./dist/elysia/index.d.ts"
|
|
64
|
+
},
|
|
65
|
+
"./client": {
|
|
66
|
+
"import": "./dist/src/client/index.js",
|
|
67
|
+
"types": "./dist/client/index.d.ts"
|
|
60
68
|
}
|
|
61
69
|
},
|
|
62
70
|
"files": [
|
|
@@ -105,12 +113,23 @@
|
|
|
105
113
|
"@anthropic-ai/sdk": "^0.71.2",
|
|
106
114
|
"@preact/signals": "^2.5.1",
|
|
107
115
|
"preact": "^10.28.1",
|
|
116
|
+
"serialize-javascript": "^6.0.2",
|
|
108
117
|
"ts-morph": "^21.0.1"
|
|
109
118
|
},
|
|
110
119
|
"peerDependencies": {
|
|
111
120
|
"typescript": "^5.9.3",
|
|
112
121
|
"preact": "^10.28.1",
|
|
113
|
-
"@preact/signals": "^2.5.1"
|
|
122
|
+
"@preact/signals": "^2.5.1",
|
|
123
|
+
"elysia": "^1.0.0",
|
|
124
|
+
"@elysiajs/eden": "^1.0.0"
|
|
125
|
+
},
|
|
126
|
+
"peerDependenciesMeta": {
|
|
127
|
+
"elysia": {
|
|
128
|
+
"optional": true
|
|
129
|
+
},
|
|
130
|
+
"@elysiajs/eden": {
|
|
131
|
+
"optional": true
|
|
132
|
+
}
|
|
114
133
|
},
|
|
115
134
|
"keywords": [
|
|
116
135
|
"multi-context",
|