Skip to content

Commit

Permalink
fix(package): add correct paths
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkeyl committed Feb 13, 2024
1 parent a238840 commit 0da85bc
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"exports": "./index.js",
"exports": "./src/index.js",
"author": "Archoleat",
"name": "@archoleat/stylelint-config-extended-scss",
"description": "Extended config for Stylelint with property sorting",
Expand Down Expand Up @@ -39,16 +39,16 @@
"lint:formatting": "prettier . --check",
"lint:editorconfig": "editorconfig-checker",
"lint:md": "remark . --quiet",
"lint:js": "eslint **/*.js --fix",
"lint:js": "eslint src/**/*.js --fix",
"test": "mocha",
"commit": "cz"
},
"files": [
"index.js",
"utilities"
"src"
],
"engines": {
"node": ">=18.12.0"
"node": ">=18.12.0",
"npm": ">=10.4.0"
},
"dependencies": {
"stylelint": "*",
Expand Down Expand Up @@ -85,13 +85,6 @@
"semantic-release": "*"
},
"peerDependencies": {
"stylelint": "*",
"stylelint-config-standard-scss": "*",
"stylelint-gamut": "*",
"stylelint-high-performance-animation": "*",
"stylelint-order": "*",
"stylelint-plugin-defensive-css": "*",
"stylelint-plugin-logical-css": "*",
"stylelint-prettier": "*"
"stylelint": "*"
}
}

0 comments on commit 0da85bc

Please sign in to comment.