-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.92 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": "klaim",
"version": "1.6.12",
"author": "antharuu",
"repository": {
"type": "git",
"url": "git+https://github.com/antharuu/klaim.git"
},
"main": "dist/klaim.cjs.js",
"module": "dist/klaim.es.js",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/bun": "latest",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.7",
"@vitest/coverage-v8": "^2.1.4",
"@vitest/ui": "^2.1.4",
"dotenv-cli": "^7.4.2",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^50.4.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jsdom": "^25.0.1",
"release-it": "^17.10.0",
"typescript-eslint": "^8.12.2",
"vite": "^5.4.10",
"vitest": "^2.1.4",
"yup": "^1.4.0"
},
"bugs": {
"url": "https://github.com/antharuu/klaim/issues"
},
"description": "Klaim is a lightweight TypeScript library designed to manage APIs and record requests, optimized for an optimal user experience.",
"homepage": "https://github.com/antharuu/klaim#readme",
"keywords": [
"typescript",
"api",
"request",
"user experience",
"optimization",
"lightweight"
],
"license": "MIT",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"test:ui": "vitest --ui --coverage.enabled=true",
"test:cover": "vitest --coverage",
"lint": "eslint src",
"lint:fix": "eslint src **/*.ts --fix",
"release": "dotenv release-it -- patch --config release-it.config.cjs --ci",
"release:minor": "dotenv release-it -- minor --config release-it.config.cjs --ci",
"release:major": "dotenv release-it -- major --config release-it.config.cjs --ci"
},
"type": "module",
"types": "dist/index.d.ts"
}