@hifilabs/pixel 0.0.3 → 0.0.4
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/dist/index.esm.d.ts +1 -0
- package/package.json +8 -8
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function BalanceAnalytics(): null;
|
package/package.json
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hifilabs/pixel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "BALANCE Pixel - Lightweight browser tracking script for artist fan analytics",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
7
|
+
"types": "./dist/index.esm.d.ts",
|
|
8
8
|
"publishConfig": {
|
|
9
|
-
"access": "
|
|
9
|
+
"access": "public"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist"
|
|
13
13
|
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"dev": "esbuild src/index.ts --bundle --outfile=dist/index.js --watch",
|
|
16
|
+
"build": "node build.js"
|
|
17
|
+
},
|
|
14
18
|
"keywords": [
|
|
15
19
|
"analytics",
|
|
16
20
|
"tracking",
|
|
@@ -36,9 +40,5 @@
|
|
|
36
40
|
"devDependencies": {
|
|
37
41
|
"esbuild": "^0.19.0",
|
|
38
42
|
"typescript": "^5.4.5"
|
|
39
|
-
},
|
|
40
|
-
"scripts": {
|
|
41
|
-
"dev": "esbuild src/index.ts --bundle --outfile=dist/index.js --watch",
|
|
42
|
-
"build": "node build.js"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|