@adonis-agora/payments-dashboard 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +246 -0
- package/README.md +62 -0
- package/dist/spa/assets/index-CT5Zon6P.css +1 -0
- package/dist/spa/assets/index-CvEbJEnq.js +41 -0
- package/dist/spa/assets/index-CvEbJEnq.js.map +1 -0
- package/dist/spa/index.html +20 -0
- package/package.json +64 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta name="robots" content="noindex, nofollow" />
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
+
<link
|
|
10
|
+
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap"
|
|
11
|
+
rel="stylesheet"
|
|
12
|
+
/>
|
|
13
|
+
<title>payments · billing console</title>
|
|
14
|
+
<script type="module" crossorigin src="/__PAYMENTS_DASHBOARD__/assets/index-CvEbJEnq.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="/__PAYMENTS_DASHBOARD__/assets/index-CT5Zon6P.css">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<div id="root"></div>
|
|
19
|
+
</body>
|
|
20
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@adonis-agora/payments-dashboard",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Billing console (revenue/subscription/usage overview, payment history, webhook-event ledger) for @adonis-agora/payments — a React SPA served by a thin AdonisJS provider. Part of the Agora ecosystem.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/DavideCarvalho/adonis-agora-payments.git",
|
|
9
|
+
"directory": "packages/dashboard"
|
|
10
|
+
},
|
|
11
|
+
"author": "Davi Carvalho <davi@goflip.ai>",
|
|
12
|
+
"type": "module",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"files": [
|
|
15
|
+
"dist/",
|
|
16
|
+
"README.md",
|
|
17
|
+
"CHANGELOG.md"
|
|
18
|
+
],
|
|
19
|
+
"peerDependencies": {
|
|
20
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
21
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@tanstack/react-query": "5.101.4",
|
|
25
|
+
"@testing-library/dom": "10.4.1",
|
|
26
|
+
"@testing-library/react": "16.3.2",
|
|
27
|
+
"@types/node": "20.19.43",
|
|
28
|
+
"@types/react": "18.3.31",
|
|
29
|
+
"@types/react-dom": "18.3.7",
|
|
30
|
+
"@vitejs/plugin-react": "4.7.0",
|
|
31
|
+
"autoprefixer": "10.5.4",
|
|
32
|
+
"class-variance-authority": "0.7.1",
|
|
33
|
+
"clsx": "2.1.1",
|
|
34
|
+
"jsdom": "25.0.1",
|
|
35
|
+
"postcss": "8.5.26",
|
|
36
|
+
"react": "18.3.1",
|
|
37
|
+
"react-dom": "18.3.1",
|
|
38
|
+
"tailwind-merge": "3.6.0",
|
|
39
|
+
"tailwindcss": "3.4.19",
|
|
40
|
+
"typescript": "5.9.3",
|
|
41
|
+
"vite": "5.4.21",
|
|
42
|
+
"vitest": "3.2.7"
|
|
43
|
+
},
|
|
44
|
+
"engines": {
|
|
45
|
+
"node": ">=20.6.0"
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"adonisjs",
|
|
49
|
+
"adonis",
|
|
50
|
+
"payments",
|
|
51
|
+
"billing",
|
|
52
|
+
"subscriptions",
|
|
53
|
+
"dashboard",
|
|
54
|
+
"admin",
|
|
55
|
+
"console",
|
|
56
|
+
"agora"
|
|
57
|
+
],
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "vite build",
|
|
60
|
+
"test": "vitest run --passWithNoTests",
|
|
61
|
+
"test:watch": "vitest",
|
|
62
|
+
"typecheck": "tsc -p tsconfig.spa.json --noEmit"
|
|
63
|
+
}
|
|
64
|
+
}
|