-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.42 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.42 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
{
"name": "agent-feedback-ui",
"version": "0.0.1",
"description": "Plug human feedback into AI agent loops with four interchangeable strategies.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./ai-sdk": {
"import": "./dist/ai-sdk.js",
"types": "./dist/ai-sdk.d.ts"
},
"./templates": {
"import": "./dist/templates.js",
"types": "./dist/templates.d.ts"
},
"./react": {
"import": "./dist/react.js",
"types": "./dist/react.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai-agents",
"human-in-the-loop",
"agent-ui",
"llm",
"feedback"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/theohmwoa/agent-feedback-ui.git"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"react": ">=18"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/react": "^18.3.12",
"happy-dom": "^15.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
}
}