-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.63 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.63 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": "@indigo-labs/indigo-sdk",
"version": "0.1.14",
"description": "Indigo SDK for interacting with Indigo endpoints via lucid-evolution",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --tsconfig tsconfig.build.json",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"repack": "pnpm run build && pnpm pack",
"format": "npx prettier --write src/ tests/",
"format:check": "npx prettier --check src/ tests/",
"test": "vitest run",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/IndigoProtocol/indigo-sdk.git"
},
"keywords": [
"indigo",
"sdk",
"typescript",
"lucid-evolution",
"cdp"
],
"author": "3rd Eye Labs",
"license": "MIT",
"dependencies": {
"@lucid-evolution/experimental": "^0.0.9",
"@lucid-evolution/lucid": "^0.4.29",
"dotenv": "^16.5.0",
"fp-ts": "^2.16.10",
"ts-pattern": "^5.8.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@eslint/js": "^9.32.0",
"@types/node": "^24.3.0",
"eslint": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"tsup": "^8.3.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vitest": "3.2.4"
}
}