@inspectr/ui 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.
Files changed (2) hide show
  1. package/package.json +4 -6
  2. package/index.d.ts +0 -8
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@inspectr/ui",
3
3
  "description": "React UI components for Inspectr",
4
4
  "type": "module",
5
- "version": "0.0.3",
5
+ "version": "0.0.4",
6
6
  "author": "Tim Haselaars",
7
7
  "homepage": "https://github.com/thim81/inspectr#readme",
8
8
  "bugs": "https://github.com/thim81/inspectr-ui/issues",
@@ -12,17 +12,15 @@
12
12
  },
13
13
  "main": "dist/inspectr-ui.umd.js",
14
14
  "module": "dist/inspectr-ui.es.js",
15
- "types": "index.d.ts",
16
15
  "files": [
17
- "dist",
18
- "index.d.ts"
16
+ "dist"
19
17
  ],
20
18
  "scripts": {
21
19
  "build": "vite build",
22
20
  "storybook": "storybook dev -p 6006",
23
21
  "build-storybook": "storybook build",
24
- "release": "npx np --branch main",
25
- "test": "echo 'test completed'"
22
+ "test": "echo 'test completed'",
23
+ "release": "npm run build && npx np --branch main"
26
24
  },
27
25
  "dependencies": {
28
26
  "@monaco-editor/react": "^4.7.0-rc.0",
package/index.d.ts DELETED
@@ -1,8 +0,0 @@
1
- declare module "@inspectr/ui" {
2
-
3
- export interface InspectrAppProps {
4
- sseUrl?: string;
5
- }
6
-
7
- export const InspectrApp: React.FC<InspectrAppProps>;
8
- }