-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 5.1 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "annotask",
"version": "0.2.6",
"description": "Visual UI design tool for web apps. Make changes in the browser and generate structured reports that AI agents can apply to source code. Works with Vue, React, Svelte, SolidJS, and plain HTML via Vite or Webpack.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./webpack": {
"types": "./dist/webpack.d.ts",
"import": "./dist/webpack.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
}
},
"bin": {
"annotask": "./dist/cli.js"
},
"files": [
"dist",
"skills",
"!dist/**/*.map"
],
"scripts": {
"build": "pnpm build:shell && pnpm build:plugin && pnpm build:vendor",
"build:shell": "vite build --config vite.config.shell.ts",
"build:plugin": "tsup",
"build:vendor": "node scripts/copy-vendor.mjs",
"dev:shell": "vite --config vite.config.shell.ts",
"dev:vue-vite": "pnpm --filter @annotask/playground-vue-vite dev",
"dev:vue-primevue": "pnpm --filter @annotask/playground-vue-primevue dev",
"dev:vue-webpack": "pnpm --filter @annotask/playground-vue-webpack dev",
"dev:react-vite": "pnpm --filter @annotask/playground-react-vite dev",
"dev:react-radix": "pnpm --filter @annotask/playground-react-radix dev",
"dev:svelte-vite": "pnpm --filter @annotask/playground-svelte-vite dev",
"dev:html-vite": "pnpm --filter @annotask/playground-html-vite dev",
"dev:astro": "pnpm --filter @annotask/playground-astro dev",
"dev:solid-vite": "pnpm --filter @annotask/playground-solid-vite dev",
"dev:htmx-vite": "pnpm --filter @annotask/playground-htmx-vite dev",
"dev:mfe-vite": "pnpm --filter @annotask/playground-mfe-vite dev",
"dev:stress-host": "pnpm --filter @annotask/stress-host dev",
"dev:stress-vue-data-lab": "pnpm --filter @annotask/stress-mfe-vue-data-lab dev",
"dev:stress-react-workflows": "pnpm --filter @annotask/stress-mfe-react-workflows dev",
"dev:stress-svelte-streaming": "pnpm --filter @annotask/stress-mfe-svelte-streaming dev",
"dev:stress-solid-component-lab": "pnpm --filter @annotask/stress-mfe-solid-component-lab dev",
"dev:stress-htmx-partials": "pnpm --filter @annotask/stress-mfe-htmx-partials dev",
"dev:stress-react-sidebar": "pnpm --filter @annotask/stress-mfe-react-sidebar dev",
"dev:stress-fastapi": "uvicorn main:app --reload --port 4320 --app-dir playgrounds/stress-test/services/fastapi",
"dev:stress-node-api": "node playgrounds/stress-test/services/node-api/index.js",
"dev:stress-go-api": "sh -c 'cd playgrounds/stress-test/services/go-api && exec go run .'",
"dev:stress-rust-api": "cargo run --quiet --manifest-path playgrounds/stress-test/services/rust-api/Cargo.toml",
"stress-test:up": "docker compose -f playgrounds/stress-test/docker-compose.yml up --build",
"stress-test:down": "docker compose -f playgrounds/stress-test/docker-compose.yml down",
"test:e2e:stress": "playwright test --config playgrounds/stress-test/e2e/playwright.config.ts",
"test:e2e:stress:annotask": "playwright test --config playgrounds/stress-test/e2e/playwright.config.ts annotask/ || true",
"typecheck": "tsc --noEmit && vue-tsc --noEmit -p src/shell/tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"pnpm": {
"overrides": {
"follow-redirects": ">=1.16.0",
"defu": ">=6.1.5",
"lodash": ">=4.18.0",
"dompurify": ">=3.4.0"
}
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.40.0",
"@babel/parser": "^7.0.0",
"@vue/compiler-dom": "^3.0.0",
"@vue/compiler-sfc": "^3.0.0",
"svelte": ">=3.0.0",
"vite": ">=4.0.0",
"webpack": ">=5.0.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
},
"@vue/compiler-sfc": {
"optional": true
},
"@vue/compiler-dom": {
"optional": true
},
"@babel/parser": {
"optional": true
},
"svelte": {
"optional": true
}
},
"dependencies": {
"ws": "^8.20.0",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.95.2",
"@babel/parser": "^7.0.0",
"@playwright/test": "^1.58.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@types/prismjs": "^1.26.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/compiler-dom": "^3.0.0",
"@vue/compiler-sfc": "^3.0.0",
"axe-core": "4.11.1",
"dompurify": "^3.4.0",
"html2canvas-pro": "2.0.2",
"js-yaml": "^4.1.1",
"jsdom": "^29.0.1",
"lucide-vue-next": "^1.0.0",
"marked": "^17.0.5",
"prismjs": "^1.30.0",
"svelte": "^5.0.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vite": "^6.4.2",
"vitest": "^4.1.2",
"vue": "^3.5.0",
"vue-tsc": "^2.0.0"
}
}