-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "algostack",
"version": "0.7.11",
"description": "",
"author": "",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./addons": "./dist/modules/addons/index.js",
"./cache": "./dist/modules/cache/index.js",
"./client": "./dist/modules/client/index.js",
"./nfds": "./dist/modules/nfds/index.js",
"./query": "./dist/modules/query/index.js",
"./txns": "./dist/modules/txns/index.js",
"./files": "./dist/modules/files/index.js",
"./medias": "./dist/modules/medias/index.js",
"./helpers": "./dist/helpers/index.js",
"./helpers/*": "./dist/helpers/*.js",
"./package.json": "./package.json"
},
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json -w"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@blockshake/defly-connect": "^1.1.6",
"@json-rpc-tools/utils": "^1.7.6",
"@perawallet/connect": "^1.3.4",
"@randlabs/myalgo-connect": "^1.4.2",
"@types/lodash": "^4.17.7",
"@types/node": "^18.19.42",
"algosdk": "^2.8.0",
"axios": "^1.7.2",
"buffer": "^6.0.3",
"camelcase-keys": "^7.0.2",
"dexie": "^4.0.8",
"fake-indexeddb": "^6.0.0",
"kebabcase-keys": "^1.0.0",
"lodash-es": "^4.17.21",
"multiformats": "^12.1.3",
"object-hash": "^3.0.0",
"p-ratelimit": "^1.0.1"
}
}