-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "liquidops",
"version": "1.2.29",
"author": "Lorimer Jenkins <lorimer@liquidops.io>, Marton Lederer <marton@liquidops.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/useLiquidOps/package.git"
},
"main": "dist/index.js",
"module": "dist/index.js",
"dependencies": {
"ar-gql": "^2.0.2",
"arbundles": "^0.11.2"
},
"peerDependencies": {
"@permaweb/aoconnect": ">= 0.0.85 < 1",
"ao-tokens": ">= 0.0.6",
"warp-arbundles": ">= 1.0.4"
},
"peerDependenciesMeta": {
"@permaweb/aoconnect": {
"optional": false
},
"ao-tokens": {
"optional": false
},
"warp-arbundles": {
"optional": false
}
},
"devDependencies": {
"@permaweb/aoconnect": "^0.0.85",
"@types/bun": "^1.1.10",
"@types/node": "^22.5.5",
"ao-tokens": "^0.0.6",
"base64-js": "^1.5.1",
"base64url": "^3.0.1",
"bun-types": "^1.1.27",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslib": "^2.5.0",
"tsup": "^8.0.1",
"typescript": "^5.0.4"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bugs": {
"url": "https://github.com/useLiquidOps/LiquidOps-JS/issues"
},
"description": "LiquidOps is an over-collateralised lending and borrowing protocol built on Arweave's L2 AO.",
"files": [
"dist/",
"src/",
"LICENSE",
"package.json",
"README.md"
],
"homepage": "https://liquidops.io",
"keywords": [
"Arweave",
"LiquidOps",
"AO",
"DeFi",
"AR",
"Lending",
"Borrowing"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run prettier && bun run build && bun run link",
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "bun test",
"prettier": "prettier --write .",
"link": "bun link",
"script": "bun run dev && bun run test.ts"
},
"type": "module",
"types": "dist/index.d.ts"
}