-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.54 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
{
"name": "@elizaos/plugin-form",
"version": "2.0.0-beta.3",
"type": "module",
"description": "Eliza plugin-form: conversational forms as guardrails for guided user journeys.",
"main": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*.css": "./dist/*.css",
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"dependencies": {
"@elizaos/core": "workspace:*",
"uuid": "^14.0.0"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {},
"description": "Conversational forms for structured data collection."
},
"elizaos": {
"app": {
"heroImage": "assets/hero.png"
},
"plugin": {
"autoEnableModule": "./auto-enable.ts",
"capabilities": [
"forms"
]
}
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "bun run build:js && bun run build:types",
"clean": "rm -rf dist",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build:js": "tsup --config ../tsup.plugin-packages.shared.ts",
"build:types": "tsc --noCheck -p tsconfig.build.json"
},
"files": [
"dist",
"auto-enable.ts"
],
"devDependencies": {
"@types/node": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.0.18"
}
}