This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) 路 1.87 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) 路 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "umami-api",
"version": "0.7.3",
"publishConfig": {
"access": "public"
},
"description": "A simple API client for Umami analytics",
"author": "Jakob Bouchard <jakob@jakobbouchard.dev> (https://jakobbouchard.dev/)",
"contributors": [
"Brice Vandeputte <boly38@gmail.com>"
],
"funding": [
"https://github.com/sponsors/jakobbouchard"
],
"license": "MIT",
"repository": "github:jakobbouchard/umami-api-client",
"homepage": "https://github.com/jakobbouchard/umami-api-client#readme",
"bugs": "https://github.com/jakobbouchard/umami-api-client/issues",
"keywords": [
"node",
"umami",
"umami-api",
"analytics",
"umami-analytics",
"rest",
"api",
"client"
],
"type": "module",
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"prepublish": "pnpm build",
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --cache .",
"format": "prettier --cache --write ."
},
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@types/node": "18.19.31",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"@vitest/coverage-c8": "0.33.0",
"axios-mock-adapter": "1.22.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.5.3",
"vitest-github-actions-reporter": "0.11.1"
},
"mangle": {
"regex": "^_"
}
}