-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 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
46
47
{
"name": "@inertia-lighting/betterstack-api",
"version": "1.0.4",
"description": "Package for betterstack's api",
"author": "Inertia Lighting",
"type": "module",
"license": "GPL-3.0-only",
"homepage": "https://github.com/Inertia-Lighting/betterstack-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Inertia-Lighting/betterstack-api.git"
},
"keywords": [
"betterstack",
"inertia"
],
"bugs": {
"url": "https://github.com/Inertia-Lighting/betterstack-api/issues"
},
"scripts": {
"build": "tsdown",
"lint": "npx eslint",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsdown --watch"
},
"dependencies": {
"axios": "^1.13.6",
"tsdown": "^0.21.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/axios": "^0.14.4",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"typescript-eslint": "^8.57.1"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"module": "./dist/index.mjs"
}