-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "algostack",
"version": "0.8.5",
"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",
"build:clean": "rm -rf dist && npm run build",
"dev": "tsc -p tsconfig.json -w"
},
"peerDependencies": {
"algosdk": "~3.2.0",
"axios": "1.13.5"
},
"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",
"algosdk": "~3.2.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@json-rpc-tools/utils": "~1.7.6",
"@types/lodash": "^4.17.7",
"@types/node": "^18.19.42",
"buffer": "~6.0.3",
"camelcase-keys": "~7.0.2",
"dexie": "4.3.0",
"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"
}
}