-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 885 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 885 Bytes
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
{
"name": "uuics-monorepo",
"version": "0.1.0",
"private": true,
"description": "Universal UI Context System - A framework for AI agents to understand and interact with web interfaces",
"keywords": [
"ai",
"ui",
"context",
"automation",
"llm"
],
"repository": {
"type": "git",
"url": "https://github.com/superduck/uuics"
},
"author": "SuperDuck",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean && rm -rf node_modules",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3",
"tsup": "^8.0.1",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}