Skip to content

Commit

Permalink
fix: add repository metadata and author information to package.json f…
Browse files Browse the repository at this point in the history
…iles
  • Loading branch information
lawvs committed Sep 29, 2024
1 parent 6edcb23 commit 4ddb682
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
8 changes: 7 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@
"version": "0.6.0",
"description": "",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:lawvs/fn-sphere.git",
"directory": "packages/core"
},
"author": "whitewater <[email protected]>",
"sideEffects": false,
"scripts": {
"build": "tsc",
"typeCheck": "tsc --noEmit",
"test": "vitest",
"clean": "rm -rf dist"
},
"sideEffects": false,
"keywords": [],
"dependencies": {
"zod-compare": "^0.3.1"
Expand Down
8 changes: 7 additions & 1 deletion packages/filter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,19 @@
"typescript",
"zod"
],
"repository": {
"type": "git",
"url": "[email protected]:lawvs/fn-sphere.git",
"directory": "packages/filter"
},
"author": "whitewater <[email protected]>",
"sideEffects": false,
"scripts": {
"build": "tsc",
"typeCheck": "tsc --noEmit",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest"
},
"sideEffects": false,
"dependencies": {
"@fn-sphere/core": "workspace:^"
},
Expand Down
7 changes: 6 additions & 1 deletion packages/theme-mui-material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
"name": "@fn-sphere/theme-mui-material",
"version": "0.1.1",
"type": "module",
"repository": {
"type": "git",
"url": "[email protected]:lawvs/fn-sphere.git",
"directory": "packages/theme-mui-material"
},
"author": "whitewater <[email protected]>",
"scripts": {
"build": "tsc",
"typeCheck": "tsc --noEmit"
},
"sideEffects": false,
"devDependencies": {
"@types/react": "^18.3.8",
"react": "^18.3.1"
Expand Down

0 comments on commit 4ddb682

Please sign in to comment.