Skip to content

Commit

Permalink
Merge pull request #130 from nix6839/cleanup-dependencies
Browse files Browse the repository at this point in the history
Cleanup dependencies
  • Loading branch information
joshwilsonvu authored Apr 13, 2024
2 parents 06c6095 + cf3a025 commit ce76fa0
Show file tree
Hide file tree
Showing 11 changed files with 1,914 additions and 2,159 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
dist
dist.*
./configs
node_modules
jest.config.js
Expand Down
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@
"object-shorthand": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/non-nullable-type-assertion-style": "warn"
"@typescript-eslint/non-nullable-type-assertion-style": "warn",
"no-extra-semi": "off",
"no-mixed-spaces-and-tabs": "off"
},
"overrides": [
{
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Build directory
dist
standalone/dist.mjs
standalone/dist.mjs.map
dist.*

# Logs
logs
Expand Down
58 changes: 24 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,50 +37,40 @@
"README.md"
],
"dependencies": {
"@typescript-eslint/utils": "^6.4.0",
"@typescript-eslint/utils": "^6.21.0",
"estraverse": "^5.3.0",
"is-html": "^2.0.0",
"kebab-case": "^1.0.2",
"known-css-properties": "^0.24.0",
"style-to-object": "^0.3.0"
"known-css-properties": "^0.30.0",
"style-to-object": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.21.3",
"@eslint/js": "^8.44.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@tsconfig/node20": "^20.1.2",
"@types/eslint": "^8.40.2",
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@tsconfig/node20": "^20.1.4",
"@types/eslint": "^8.56.7",
"@types/estraverse": "^5.1.7",
"@types/fs-extra": "^9.0.13",
"@types/is-html": "^2.0.0",
"@types/jest": "^27.5.2",
"@types/markdown-magic": "^1.0.1",
"@types/node": "^16.18.16",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.43.0",
"eslint-plugin-eslint-plugin": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"@types/is-html": "^2.0.2",
"@types/jest": "^29.5.12",
"@types/markdown-magic": "^1.0.4",
"@types/node": "^16.18.94",
"@types/prettier": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-eslint-plugin": "^5.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-solid": "link:",
"eslint-v6": "npm:eslint@^6.8.0",
"eslint-v7": "npm:eslint@^7.32.0",
"execa": "^5.1.1",
"fast-glob": "^3.2.12",
"fs-extra": "^10.1.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"jest-node-exports-resolver": "^1.1.6",
"lint-staged": "^11.2.6",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"markdown-magic": "^2.6.1",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.4.2"
"prettier": "^2.8.8",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
Expand Down
Loading

0 comments on commit ce76fa0

Please sign in to comment.