-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@folks-finance/algorand-sdk",
"version": "0.1.5",
"description": "The official JavaScript SDK for the Folks Finance Protocol",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/**/*",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Folks-Finance/algorand-js-sdk.git"
},
"scripts": {
"prepare": "husky",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write 'src/**/*'",
"gen-docs": "typedoc",
"example": "pnpx tsx",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"algosdk": "^2.9.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@typescript-eslint/parser": "^8.18.0",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.3.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"typedoc": "^0.27.4",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"author": "Folks Finance",
"license": "MIT",
"lint-staged": {
"*.src/**/*": "prettier --write"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c",
"keywords": [
"folks-finance",
"lending",
"algorand",
"blockchain",
"defi"
]
}