-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "@liquidlink-lab/liquidlink-dashboard-sdk",
"version": "0.1.0",
"description": "Liquidlink Dashboard SDK with a typed request builder and unified APIs.",
"author": "liquidlink.io@gmail.com",
"type": "module",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"dependencies": {
"undici": "^7.16.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Liquidlink-Lab/liquidlink-dashboard-sdk.git"
},
"scripts": {
"lint": "biome check",
"format": "biome format --write",
"typecheck": "tsc --noEmit",
"check": "bun run lint && bun run typecheck",
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"clean": "rm -rf dist",
"prepare": "bun run clean && bun run build"
},
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}