-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
38 lines (38 loc) · 1.06 KB
/
deno.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
{
"name": "@antharuu/klaim",
"version": "1.6.12",
"description": "Klaim is a lightweight TypeScript library designed to manage APIs and record requests, optimized for an optimal user experience.",
"repository": {
"type": "git",
"url": "https://github.com/antharuu/klaim.git"
},
"keywords": [
"typescript",
"api",
"request",
"user experience",
"optimization",
"lightweight"
],
"author": "antharuu",
"license": "MIT",
"bugs": {
"url": "https://github.com/antharuu/klaim/issues"
},
"homepage": "https://github.com/antharuu/klaim#readme",
"main": "dist/klaim.cjs.js",
"module": "dist/klaim.es.js",
"types": "dist/index.d.ts",
"exports": "./mod.ts",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"lint": "eslint src",
"lint:fix": "eslint src **/*.ts --fix",
"release": "dotenv release-it --"
},
"peerDependencies": {
"typescript": "^5.5.3"
}
}