-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.56 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.56 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
{
"name": "plugin-polymarket",
"description": "Project starter for elizaOS",
"version": "0.1.0",
"type": "module",
"private": true,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"project",
"elizaos"
],
"repository": {
"type": "git",
"url": "github:derekmeegan/plugin-polymarket"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/cli": "beta",
"@elizaos/core": "beta",
"@elizaos/plugin-bootstrap": "^1.0.0-beta.49",
"@elizaos/plugin-openai": "beta",
"@elizaos/plugin-sql": "beta",
"zod": "^3.24.2"
},
"devDependencies": {
"@vitest/coverage-v8": "2.1.5",
"prettier": "3.5.3",
"tsup": "8.4.0",
"vitest": "2.1.5"
},
"scripts": {
"start": "elizaos start",
"dev": "elizaos dev",
"build": "tsup",
"lint": "prettier --write ./src",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src"
},
"publishConfig": {
"access": "public"
},
"gitHead": "b165ad83e5f7a21bc1edbd83374ca087e3cd6b33",
"packageType": "project",
"agentConfig": {
"pluginType": "elizaos:project:1.0.0",
"projectConfig": {
"name": "plugin-polymarket",
"description": "Project starter for elizaOS"
}
},
"platform": "node"
}