openseo-template 0.1.3 → 0.1.5

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 { default as FancyButton } from './FancyButton';
@@ -0,0 +1,3 @@
1
+ import FancyButton from './FancyButton';
2
+
3
+ export { FancyButton };
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "openseo-template",
3
- "version": "0.1.3",
4
- "main": "components/index.js",
3
+ "version": "0.1.5",
4
+ "main": "components/index.ts",
5
+ "types": "components/index.d.ts",
5
6
  "private": false,
6
7
  "scripts": {
7
- "publish": "npm publish --//registry.npmjs.org/:_authToken=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",
8
8
  "dev": "next dev",
9
9
  "build": "next build",
10
10
  "start": "next start",
@@ -1,3 +0,0 @@
1
- import FancyButton from './FancyButton.tsx';
2
-
3
- export { FancyButton };