@companyio/shared-types 0.1.8

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/README.md +15 -0
  2. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @companyio/shared-types
2
+
3
+ Shared TypeScript interfaces for users, interview sessions, questions, responses, and API responses.
4
+
5
+ ## Use
6
+
7
+ ```ts
8
+ import type { InterviewSession, User } from '@companyio/shared-types';
9
+ ```
10
+
11
+ ## Build
12
+
13
+ ```bash
14
+ pnpm --filter @companyio/shared-types build
15
+ ```
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@companyio/shared-types",
3
+ "version": "0.1.8",
4
+ "description": "Shared TypeScript types",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md"
17
+ ],
18
+ "devDependencies": {
19
+ "typescript": "^5.3.3"
20
+ },
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "test": "tsc --noEmit"
24
+ }
25
+ }