kurtosis-ui-components 0.0.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.
@@ -0,0 +1 @@
1
+ export declare const hello: () => void;
package/build/index.js ADDED
@@ -0,0 +1 @@
1
+ export const hello = () => console.log("Hello Kurtosis");
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "kurtosis-ui-components",
3
+ "version": "0.0.0",
4
+ "private": false,
5
+ "main": "build/index",
6
+ "description": "This repo contains components used by Kurtosis UI applications.",
7
+ "types": "./build/index",
8
+ "files": [
9
+ "build"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/kurtosis-tech/enclave-manager-sdk.git",
14
+ "directory": "enclave-manager/web/packages/components"
15
+ },
16
+ "author": "Kurtosis Technologies Inc <support@kurtosistech.com> (https://www.kurtosistech.com/)",
17
+ "license": "Apache-2.0",
18
+ "bugs": {
19
+ "url": "https://github.com/kurtosis-tech/kurtosis/issues"
20
+ },
21
+ "homepage": "https://github.com/kurtosis-tech/kurtosis",
22
+ "scripts": {
23
+ "build": "rm -rf build/; tsc"
24
+ },
25
+ "eslintConfig": {
26
+ "extends": [
27
+ "react-app",
28
+ "react-app/jest"
29
+ ]
30
+ },
31
+ "browserslist": {
32
+ "production": [
33
+ ">0.2%",
34
+ "not dead",
35
+ "not op_mini all"
36
+ ],
37
+ "development": [
38
+ "last 1 chrome version",
39
+ "last 1 firefox version",
40
+ "last 1 safari version"
41
+ ]
42
+ }
43
+ }