@riab/cpm-archiving 0.0.1-beta

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.
Binary file
@@ -0,0 +1,29 @@
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.0" />
6
+ <link rel="icon" href="/favicon.ico" />
7
+ <meta name="theme-color" content="#000000" />
8
+ <meta
9
+ name="description"
10
+ content="Web site created using create-tsrouter-app"
11
+ />
12
+ <link rel="apple-touch-icon" href="/logo192.png" />
13
+ <link rel="manifest" href="/manifest.json" />
14
+ <link
15
+ href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
16
+ rel="stylesheet"
17
+ />
18
+ <title>Archiving</title>
19
+ <script type="module" crossorigin src="/cpm-archiving.js"></script>
20
+
21
+ </head>
22
+ <body>
23
+ <comply-archive
24
+ route=""
25
+ environment="local"
26
+ user="QZqDeFJCYaoGcFtE0o1OEhKlYlDz+mQI3ix9E3s75mdWR2wqSdvu1fU7s9mcMk9SshVMSZCjwuEgwXNVIfbh+A=="
27
+ ></comply-archive>
28
+ </body>
29
+ </html>
Binary file
Binary file
@@ -0,0 +1,25 @@
1
+ {
2
+ "short_name": "TanStack App",
3
+ "name": "Create TanStack App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ },
10
+ {
11
+ "src": "logo192.png",
12
+ "type": "image/png",
13
+ "sizes": "192x192"
14
+ },
15
+ {
16
+ "src": "logo512.png",
17
+ "type": "image/png",
18
+ "sizes": "512x512"
19
+ }
20
+ ],
21
+ "start_url": ".",
22
+ "display": "standalone",
23
+ "theme_color": "#000000",
24
+ "background_color": "#ffffff"
25
+ }
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@riab/cpm-archiving",
3
+ "private": false,
4
+ "version": "0.0.1-beta",
5
+ "type": "module",
6
+ "main": "dist/cpm-archiving.js",
7
+ "module": "dist/cpm-archiving.js",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "exports": {
12
+ ".": "./dist/cpm-archiving.js"
13
+ },
14
+ "scripts": {
15
+ "dev": "vite --port 3000",
16
+ "start": "vite --port 3000",
17
+ "build": "vite build",
18
+ "serve": "vite preview",
19
+ "test": "vitest run",
20
+ "lint": "eslint",
21
+ "format": "prettier",
22
+ "check": "prettier --write . && eslint --fix"
23
+ },
24
+ "dependencies": {
25
+ "@faker-js/faker": "^9.6.0",
26
+ "@progress/kendo-react-buttons": "^10.2.0",
27
+ "@progress/kendo-react-common": "^10.2.0",
28
+ "@progress/kendo-react-dialogs": "^10.2.0",
29
+ "@progress/kendo-svg-icons": "^4.3.0",
30
+ "@progress/kendo-theme-default": "^10.2.0",
31
+ "@r2wc/react-to-web-component": "^2.0.4",
32
+ "@sentry/react": "^9.19.0",
33
+ "@tailwindcss/vite": "^4.0.6",
34
+ "@tanstack/match-sorter-utils": "^8.19.4",
35
+ "@tanstack/react-query": "^5.66.5",
36
+ "@tanstack/react-query-devtools": "^5.66.5",
37
+ "@tanstack/react-router": "^1.114.3",
38
+ "@tanstack/react-router-devtools": "^1.114.3",
39
+ "@tanstack/react-table": "^8.21.2",
40
+ "date-fns": "^4.1.0",
41
+ "html-react-parser": "^5.2.6",
42
+ "react-date-range": "^2.0.1",
43
+ "react-highlight-words": "^0.21.0",
44
+ "react-hot-toast": "^2.5.2",
45
+ "react-select": "^5.10.2",
46
+ "react-social-media-embed": "^2.5.18",
47
+ "react-tweet": "^3.2.2",
48
+ "tailwindcss": "^4.0.6",
49
+ "use-debounce": "^10.0.5",
50
+ "zustand": "^5.0.5"
51
+ },
52
+ "devDependencies": {
53
+ "@tanstack/eslint-config": "^0.2.0",
54
+ "@testing-library/dom": "^10.4.0",
55
+ "@testing-library/react": "^16.2.0",
56
+ "@types/react": "^19.0.8",
57
+ "@types/react-dom": "^19.0.3",
58
+ "@vitejs/plugin-react": "^4.3.4",
59
+ "jsdom": "^26.0.0",
60
+ "prettier": "^3.5.3",
61
+ "typescript": "~5.6.2",
62
+ "vite": "^6.1.0",
63
+ "vite-plugin-css-injected-by-js": "^3.5.2",
64
+ "vitest": "^3.0.5",
65
+ "web-vitals": "^4.2.4"
66
+ },
67
+ "peerDependencies": {
68
+ "react": "^19.0.0",
69
+ "react-dom": "^19.0.0"
70
+ }
71
+ }