Skip to content

Commit

Permalink
chore: package.json 모듈 경로 수정 및 dependencies 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
CheeseB committed Apr 22, 2024
1 parent dce063e commit 3734b06
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
13 changes: 6 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@
"private": false,
"type": "module",
"main": "dist/index.js",
"module": "./index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "./browser/specific/main.js",
"author": "GGF",
"files": [
"dist"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite",
"build": "rm -rf dist && tsc && vite build",
Expand All @@ -17,10 +23,9 @@
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"compile": "rm -rf dist && mkdir dist && tsc"
"prepublishOnly": "npm run build"
},
"dependencies": {
"ggf-ui": "file:ggf-ui-0.1.5.tgz",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
Expand Down

0 comments on commit 3734b06

Please sign in to comment.