@dittolive/ditto-chat-core 0.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,8 @@
1
+ /**
2
+ * @dittolive/ditto-chat-core
3
+ *
4
+ * Placeholder initial release to claim npm namespace.
5
+ * Real implementation coming soon.
6
+ */
7
+ export declare const VERSION = "0.0.1";
8
+ export declare function placeholder(): string;
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ /**
3
+ * @dittolive/ditto-chat-core
4
+ *
5
+ * Placeholder initial release to claim npm namespace.
6
+ * Real implementation coming soon.
7
+ */
8
+ Object.defineProperty(exports, "__esModule", { value: true });
9
+ exports.VERSION = void 0;
10
+ exports.placeholder = placeholder;
11
+ exports.VERSION = "0.0.1";
12
+ function placeholder() {
13
+ return "This is a placeholder package for @dittolive/ditto-chat-core";
14
+ }
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@dittolive/ditto-chat-core",
3
+ "version": "0.0.1",
4
+ "description": "Core library for Ditto Chat",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "prepublishOnly": "npm run build"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/dittolive/ditto-chat"
21
+ },
22
+ "keywords": [
23
+ "ditto",
24
+ "chat",
25
+ "core"
26
+ ],
27
+ "devDependencies": {
28
+ "typescript": "^5.0.0"
29
+ }
30
+ }