Skip to content

Commit

Permalink
fix: make tippy a dependency rather than dev dependency
Browse files Browse the repository at this point in the history
Also updates "main" entry to point to src files rather than dist.
  • Loading branch information
ryangjchandler committed Jan 7, 2024
1 parent 68f9f2f commit 452ad5c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
"type": "git",
"url": "https://github.com/ryangjchandler/alpine-tooltip"
},
"main": "dist/module.cjs.js",
"main": "src/index.js",
"module": "dist/module.esm.js",
"type": "module",
"dependencies": {
"tippy.js": "^6.3.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"brotli-size": "^4.0.0",
Expand All @@ -25,8 +28,7 @@
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.2.4",
"lint-staged": "^10.5.4",
"tippy.js": "^6.3.1"
"lint-staged": "^10.5.4"
},
"scripts": {
"test": "npm run build && node --experimental-vm-modules node_modules/.bin/jest",
Expand Down

0 comments on commit 452ad5c

Please sign in to comment.