@jay-framework/aiditor 0.16.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/README.md +58 -0
- package/dist/actions/get-aiditor-bootstrap.jay-action +9 -0
- package/dist/actions/get-aiditor-bootstrap.jay-action.d.ts +8 -0
- package/dist/actions/get-page-params.jay-action +9 -0
- package/dist/actions/get-page-params.jay-action.d.ts +5 -0
- package/dist/actions/get-project-info.jay-action +12 -0
- package/dist/actions/get-project-info.jay-action.d.ts +12 -0
- package/dist/actions/list-freezes.jay-action +12 -0
- package/dist/actions/list-freezes.jay-action.d.ts +12 -0
- package/dist/actions/read-file.jay-action +11 -0
- package/dist/actions/read-file.jay-action.d.ts +10 -0
- package/dist/actions/submit-task.jay-action +24 -0
- package/dist/actions/submit-task.jay-action.d.ts +24 -0
- package/dist/aiditor-shell.jay-contract +8 -0
- package/dist/aiditor-shell.jay-contract.d.ts +18 -0
- package/dist/index.d.ts +445 -0
- package/dist/index.js +464 -0
- package/dist/pages/aiditor/page.css +1 -0
- package/dist/pages/aiditor/page.jay-contract +12 -0
- package/dist/pages/aiditor/page.jay-contract.d.ts +24 -0
- package/dist/pages/aiditor/page.jay-html +759 -0
- package/package.json +56 -0
- package/plugin.yaml +28 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jay-framework/aiditor",
|
|
3
|
+
"version": "0.16.2",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "AIditor — visual AI-driven code editor plugin for Jay Framework",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"plugin.yaml"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./plugin.yaml": "./plugin.yaml",
|
|
17
|
+
"./aiditor-shell.jay-contract": "./dist/aiditor-shell.jay-contract",
|
|
18
|
+
"./get-aiditor-bootstrap.jay-action": "./dist/actions/get-aiditor-bootstrap.jay-action",
|
|
19
|
+
"./get-project-info.jay-action": "./dist/actions/get-project-info.jay-action",
|
|
20
|
+
"./get-page-params.jay-action": "./dist/actions/get-page-params.jay-action",
|
|
21
|
+
"./list-freezes.jay-action": "./dist/actions/list-freezes.jay-action",
|
|
22
|
+
"./submit-task.jay-action": "./dist/actions/submit-task.jay-action",
|
|
23
|
+
"./read-file.jay-action": "./dist/actions/read-file.jay-action",
|
|
24
|
+
"./lib/pages/aiditor/page.jay-html": "./lib/pages/aiditor/page.jay-html",
|
|
25
|
+
"./lib/pages/aiditor/page.css": "./lib/pages/aiditor/page.css"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "npm run clean && npm run definitions && npm run build:server && npm run build:copy-assets && npm run build:types && npm run validate",
|
|
29
|
+
"definitions": "jay-cli definitions lib",
|
|
30
|
+
"validate": "jay-stack-cli validate-plugin",
|
|
31
|
+
"build:server": "vite build --ssr",
|
|
32
|
+
"build:copy-assets": "mkdir -p dist/actions dist/pages/aiditor && cp lib/*.jay-contract* dist/ && cp lib/actions/*.jay-action* dist/actions/ && cp lib/pages/aiditor/page.jay-html dist/pages/aiditor/ && cp lib/pages/aiditor/page.css dist/pages/aiditor/ && cp lib/pages/aiditor/page.jay-contract* dist/pages/aiditor/",
|
|
33
|
+
"build:types": "tsup lib/index.ts --dts-only --format esm",
|
|
34
|
+
"build:check-types": "tsc",
|
|
35
|
+
"clean": "rimraf dist",
|
|
36
|
+
"test": ":"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@anthropic-ai/claude-agent-sdk": "0.2.119",
|
|
40
|
+
"@jay-framework/fullstack-component": "^0.16.2",
|
|
41
|
+
"@jay-framework/stack-client-runtime": "^0.16.2",
|
|
42
|
+
"@jay-framework/stack-server-runtime": "^0.16.2",
|
|
43
|
+
"busboy": "^1.6.0",
|
|
44
|
+
"html2canvas": "^1.4.1",
|
|
45
|
+
"zod": "^4.3.6"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@jay-framework/compiler-jay-stack": "^0.16.2",
|
|
49
|
+
"@jay-framework/jay-cli": "^0.16.2",
|
|
50
|
+
"@types/busboy": "^1",
|
|
51
|
+
"rimraf": "^5.0.5",
|
|
52
|
+
"tsup": "^8.5.1",
|
|
53
|
+
"typescript": "^5.3.3",
|
|
54
|
+
"vite": "^5.0.11"
|
|
55
|
+
}
|
|
56
|
+
}
|
package/plugin.yaml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: aiditor
|
|
2
|
+
|
|
3
|
+
contracts:
|
|
4
|
+
- name: aiditor-shell
|
|
5
|
+
contract: aiditor-shell.jay-contract
|
|
6
|
+
component: aiditorShell
|
|
7
|
+
description: AIditor shell — editor chrome banner
|
|
8
|
+
|
|
9
|
+
actions:
|
|
10
|
+
- name: getAiditorBootstrap
|
|
11
|
+
action: get-aiditor-bootstrap.jay-action
|
|
12
|
+
- name: getProjectInfoAction
|
|
13
|
+
action: get-project-info.jay-action
|
|
14
|
+
- name: getPageParamsAction
|
|
15
|
+
action: get-page-params.jay-action
|
|
16
|
+
- name: listFreezesAction
|
|
17
|
+
action: list-freezes.jay-action
|
|
18
|
+
- name: submitTaskAction
|
|
19
|
+
action: submit-task.jay-action
|
|
20
|
+
- name: readFileAction
|
|
21
|
+
action: read-file.jay-action
|
|
22
|
+
|
|
23
|
+
routes:
|
|
24
|
+
- path: /aiditor
|
|
25
|
+
jayHtml: ./lib/pages/aiditor/page.jay-html
|
|
26
|
+
css: ./lib/pages/aiditor/page.css
|
|
27
|
+
component: aiditorPage
|
|
28
|
+
description: AIditor — visual AI-driven code editor
|