Skip to content

Commit

Permalink
fix: maybe fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Rei-x committed Nov 29, 2024
1 parent 1f3cf23 commit 6c0fa2c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bin/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
import "../dist/cli.js";
import "../dist/eslint-config/cli.js";
20 changes: 13 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,25 @@
},
"repository": {
"type": "git",
"url": "https://github.com/Solvro/lib-web-solvro-config.git"
"url": "git+https://github.com/Solvro/lib-web-solvro-config.git"
},
"license": "MPL-2.0",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
"./eslint": {
"import": "./dist/eslint-config/index.js",
"require": "./dist/eslint-config/index.cjs",
"types": "./dist/eslint-config/index.d.ts"
},
"./prettier": {
"import": "./dist/prettier-config/index.js",
"require": "./dist/prettier-config/index.cjs",
"types": "./dist/prettier-config/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/index.js",
"bin": {
"config": "bin/index.js"
},
"files": [
"bin",
"dist"
Expand Down

0 comments on commit 6c0fa2c

Please sign in to comment.