-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.42 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
46
47
48
49
{
"name": "@elizaos-plugins/plugin-injective",
"version": "0.1.9",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write \"src/**/*.ts\"",
"test:coverage": "jest --coverage"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [],
"author": "hrishikesh@injectivelabs.org",
"license": "ISC",
"devDependencies": {
"@types/chai": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"chai": "^5.1.2",
"eslint": "9.16.0",
"jest": "^29.7.0",
"prettier": "3.4.1",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@elizaos/adapter-sqlite": "0.1.7-alpha.2",
"injective-sdk-client-ts": "file:../../packages/plugin-injective/injective-sdk-client-ts"
}
}