@epigraph/epigraph-std-lib 2.2.1 → 2.3.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,14 @@
1
+ export * from "three";
2
+ export * as ModelViewer from "@google/model-viewer";
3
+ export * as MODEL_VIEWER_CONSTANTS from "@google/model-viewer/lib/constants";
4
+ export * from "./EpigraphLogger/epigraph-logger";
5
+ export * from "qr-creator";
6
+ export * as ThreeWebGLCompatibility from "three/examples/jsm/capabilities/WebGL";
7
+ import { EpigraphAnalytics } from '@epigraph/epigraph-analytics';
8
+ import { AnalyticsEvent } from '@epigraph/epigraph-analytics';
9
+ import { GA3AnalyticsPlugin } from '@epigraph/epigraph-analytics';
10
+ import { GA4AnalyticsPlugin } from '@epigraph/epigraph-analytics';
11
+ export { EpigraphAnalytics };
12
+ export type { AnalyticsEvent };
13
+ export { GA3AnalyticsPlugin };
14
+ export { GA4AnalyticsPlugin };
package/package.json CHANGED
@@ -1,37 +1,43 @@
1
- {
2
- "name": "@epigraph/epigraph-std-lib",
3
- "version": "2.2.1",
4
- "type": "module",
5
- "files": [
6
- "/dist"
7
- ],
8
- "main": "./dist/epigraph-std-lib.cjs",
9
- "module": "./dist/epigraph-std-lib.js",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/epigraph-std-lib.js",
14
- "require": "./dist/epigraph-std-lib.cjs"
15
- }
16
- },
17
- "scripts": {
18
- "dev": "vite",
19
- "build": "tsc && vite build",
20
- "preview": "vite preview",
21
- "test": "echo \"Error: no test specified\"",
22
- "prepublishOnly": "npm run build"
23
- },
24
- "devDependencies": {
25
- "@types/node": "18.15.11",
26
- "typescript": "4.9.3",
27
- "vite": "4.2.0",
28
- "vite-plugin-dts": "2.2.0"
29
- },
30
- "dependencies": {
31
- "@epigraph/epigraph-analytics": "0.2.6",
32
- "@google/model-viewer": "^3.1.1",
33
- "@types/three": "^0.152.0",
34
- "qr-creator": "^1.0.0",
35
- "three": "^0.152.2"
36
- }
37
- }
1
+ {
2
+ "name": "@epigraph/epigraph-std-lib",
3
+ "version": "2.3.1",
4
+ "type": "module",
5
+ "files": [
6
+ "/dist"
7
+ ],
8
+ "main": "./dist/epigraph-std-lib.cjs",
9
+ "module": "./dist/epigraph-std-lib.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/epigraph-std-lib.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/epigraph-std-lib.cjs"
20
+ }
21
+ }
22
+ },
23
+ "scripts": {
24
+ "dev": "vite",
25
+ "build": "tsc && vite build",
26
+ "preview": "vite preview",
27
+ "test": "echo \"Error: no test specified\"",
28
+ "prepublishOnly": "npm run build"
29
+ },
30
+ "devDependencies": {
31
+ "@types/node": "18.15.11",
32
+ "typescript": "4.9.3",
33
+ "vite": "4.2.0",
34
+ "vite-plugin-dts": "2.2.0"
35
+ },
36
+ "dependencies": {
37
+ "@epigraph/epigraph-analytics": "0.4.0",
38
+ "@google/model-viewer": "3.2.1",
39
+ "@types/three": "0.154.0",
40
+ "qr-creator": "^1.0.0",
41
+ "three": "0.154.0"
42
+ }
43
+ }
package/dist/Index.d.ts DELETED
@@ -1,7 +0,0 @@
1
- export * from "three";
2
- export * as ModelViewer from "@google/model-viewer";
3
- export * as MODEL_VIEWER_CONSTANTS from "@google/model-viewer/lib/constants";
4
- export * from "./EpigraphLogger/epigraph-logger";
5
- export * from "qr-creator";
6
- export * as ThreeWebGLCompatibility from "three/examples/jsm/capabilities/WebGL";
7
- export * from "@epigraph/epigraph-analytics";