@the-inkwell/shared 0.0.0 → 0.0.2

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/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Inkwell shared code
2
+
3
+ Use this publicly available repo with Inkwell products for shared:
4
+
5
+ - Types
6
+ - Design system
7
+ - Constants
8
+
9
+ NO SENSITIVE INFO IN THIS PACKAGE
package/index.ts CHANGED
@@ -1,4 +1 @@
1
- export type Test = {
2
- id: string
3
- name: string
4
- }
1
+ export * from './types'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@the-inkwell/shared",
3
3
  "private": false,
4
- "version": "0.0.0",
4
+ "version": "0.0.2",
5
5
  "description": "Shared code for Inkwell",
6
6
  "license": "ISC",
7
7
  "author": "Inkwell (Rob Yedlin)",
@@ -9,7 +9,8 @@
9
9
  "main": "index.js",
10
10
  "scripts": {
11
11
  "build": "tsc",
12
- "test": "echo \"Error: no test specified\" && exit 1"
12
+ "test": "echo \"Error: no test specified\" && exit 1",
13
+ "publish": "npm publish"
13
14
  },
14
15
  "devDependencies": {
15
16
  "@types/node": "^22.13.1",
@@ -0,0 +1 @@
1
+ export * from './website'
@@ -0,0 +1,5 @@
1
+ export type AdminWebsiteStaticPageUpdateInput = {
2
+ content: {
3
+ [key: string]: string
4
+ }
5
+ }
package/types/index.ts ADDED
@@ -0,0 +1 @@
1
+ export * from './admin'