-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1018 Bytes
/
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
{
"name": "akmj",
"version": "0.0.1",
"description": "API Kit for Modern JavaScript - A sleek, type-safe HTTP client for modern JavaScript.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc -p tsconfig.dist.json",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tojoo-dev/akmj.git"
},
"keywords": [
"http",
"client",
"type-safe",
"typescript",
"api",
"ky",
"fetch",
"node-fetch"
],
"author": "Tojoo.dev <[email protected]> (https://ahann.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tojoo-dev/akmj/issues"
},
"homepage": "https://github.com/tojoo-dev/akmj#readme",
"devDependencies": {
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"dependencies": {
"ky": "^1.7.2"
}
}