-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 896 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 896 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
41
{
"name": "@workflowai/react",
"version": "0.1.0-beta.0",
"description": "React components for WorkflowAI",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"homepage": "https://workflowai.com",
"keywords": [
"workflowai",
"ai",
"llm",
"agent",
"react",
"components"
],
"style": "dist/bundle.css",
"files": [
"dist"
],
"engines": {
"node": ">=18.13"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
},
"scripts": {
"prebuild": "npm run clean && tsx ../../configs/prebuild.ts",
"clean": "rm -rf dist/*",
"build": "rollup -c",
"dry": "npm run build && npm pub --dry-run",
"prepublishOnly": "npm run build"
}
}