fixed shared package

This commit is contained in:
Oliver Bryan
2025-12-14 10:46:06 +00:00
parent 8803550535
commit d87eee2838
3 changed files with 34 additions and 40 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "issue-monorepo", "name": "issue-monorepo",
"private": true, "private": true,
"version": "1.0.0", "version": "0.1.0",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],

View File

@@ -1,17 +1,11 @@
{ {
"name": "@issue/shared", "name": "@issue/shared",
"version": "1.0.0", "version": "0.1.0",
"description": "Shared schemas and types for the issue monorepo",
"type": "module", "type": "module",
"main": "dist/index.js", "main": "./src/index.ts",
"types": "dist/index.d.ts", "exports": {
"scripts": { ".": "./src/index.ts"
"build": "tsc",
"dev": "tsc --watch"
}, },
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": { "devDependencies": {
"typescript": "^5.8.3" "typescript": "^5.8.3"
}, },