-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 713 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 713 Bytes
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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"description": "Simple API client using fetch",
"devDependencies": {
"typescript": "5.9.3"
},
"engines": {
"node": ">= 18.0"
},
"exports": "./dist/index.js",
"files": [
"dist"
],
"keywords": [
"api-client",
"fetch",
"cli",
"typescript"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/api-client",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/api-client",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"dist": "yarn clean && yarn build",
"test": "exit 0"
},
"type": "module",
"version": "2.1.2"
}