-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 KB
/
package.json
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
{
"name": "@elizaos/plugin-firstpoint-crypto",
"version": "0.1.0",
"description": "A cryptocurrency price tracking plugin for ElizaOS",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"scripts": {
"build": "tsup src/index.ts --format esm --no-dts && tsc --emitDeclarationOnly",
"dev": "tsup src/index.ts --format esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@elizaos/core": "workspace:*"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": [
"elizaos",
"plugin",
"cryptocurrency",
"crypto",
"price",
"bitcoin",
"ethereum"
],
"author": "First Point",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/First-Point/plugin-firstpoint-crypto.git"
},
"bugs": {
"url": "https://github.com/First-Point/plugin-firstpoint-crypto/issues"
},
"homepage": "https://github.com/First-Point/plugin-firstpoint-crypto#readme",
"publishConfig": {
"access": "public"
}
}