rozmova-analytics 1.0.1

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.
@@ -0,0 +1,4 @@
1
+ declare const Analytics: {
2
+ init(): void;
3
+ };
4
+ export default Analytics;
package/dist/index.js ADDED
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var Analytics = {
8
+ init: function init() {
9
+ console.log("init");
10
+ }
11
+ };
12
+ var _default = exports["default"] = Analytics;
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "rozmova-analytics",
3
+ "version": "1.0.1",
4
+ "description": "A collection of JavaScript functions for analytics (Google Analytics, Mixpanel, etc.).",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "babel src --out-dir dist --extensions .ts,.tsx && npm run build:types",
9
+ "build:types": "tsc --emitDeclarationOnly"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/uptechteam/rozmova-analytics.git"
14
+ },
15
+ "keywords": [
16
+ "analytics",
17
+ "google-analytics",
18
+ "mixpanel",
19
+ "javascript",
20
+ "npm-package"
21
+ ],
22
+ "author": "Your Name",
23
+ "license": "MIT",
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "devDependencies": {
28
+ "@babel/cli": "^7.22.0",
29
+ "@babel/core": "^7.22.0",
30
+ "@babel/preset-env": "^7.22.0",
31
+ "@babel/preset-typescript": "^7.26.0",
32
+ "typescript": "^5.7.2"
33
+ }
34
+ }