-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 957 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 957 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
{
"name": "@3rd-eye-labs/dexter-v2",
"version": "2.0.1",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"lint": "npx eslint .",
"build": "tsup src/index.ts --minify --format esm,cjs --dts --clean",
"start": "node dist/index.js",
"dev": "pnpm build && pnpm start",
"format": "npx prettier --write .",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.0",
"eslint": "^9.32.0",
"jest": "^30.2.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsup": "^8.3.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"dependencies": {
"@indigo-labs/iris-sdk": "^1.0.5",
"@lucid-evolution/lucid": "^0.4.29",
"axios": "^1.13.5"
}
}