@synnaxlabs/alamos 0.1.0

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/.eslintrc.cjs ADDED
@@ -0,0 +1,18 @@
1
+ /*
2
+ * Copyright 2023 Synnax Labs, Inc.
3
+ *
4
+ * Use of this software is governed by the Business Source License included in the file
5
+ * licenses/BSL.txt.
6
+ *
7
+ * As of the Change Date specified in that file, in accordance with the Business Source
8
+ * License, use of this software will be governed by the Apache License, Version 2.0,
9
+ * included in the file licenses/APL.txt.
10
+ */
11
+
12
+ module.exports = {
13
+ root: true,
14
+ extends: ["synnaxlabs"],
15
+ parserOptions: {
16
+ project: "./tsconfig.json",
17
+ },
18
+ };
package/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ Source code in this repository is licensed under the Business Source License 1.1 (BSL).
2
+ A copy of the license can be found in the licenses/BSL.txt file. Source code in a given
3
+ file is licensed under the BSL and the copyright belongs to Synnax Labs, Inc. unless
4
+ otherwise noted at the beginning of the file.
@@ -0,0 +1,2 @@
1
+ import { Instrumentation } from '../instrumentation';
2
+ export declare const instrumentation: () => Instrumentation;