@calebz/react-theme-generator
Advanced tools
Comparing version 0.0.2 to 0.0.4
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"project": "tsconfig.json" | ||
}, | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"node": true | ||
}, | ||
"extends": ["airbnb-typescript", "prettier"], | ||
"plugins": ["import", "react", "react-hooks"], | ||
"settings": { | ||
"import/parsers": { | ||
"@typescript-eslint/parser": [".ts", ".tsx"] | ||
}, | ||
"import/resolver": { | ||
"typescript": { | ||
"alwaysTryTypes": true | ||
} | ||
} | ||
}, | ||
"ignorePatterns": ["coverage", "dist", "dist-storybook", "lib", "**/__snapshots__", "node_modules"], | ||
"rules": { | ||
"no-unused-vars": "error", | ||
// note you must disable the base rule as it can report incorrect errors | ||
"no-use-before-define": "off", | ||
"@typescript-eslint/no-use-before-define": ["error"] | ||
// "import/extensions": [ | ||
// "error", | ||
// "ignorePackages", | ||
// { | ||
// "js": "never", | ||
// "jsx": "never", | ||
// "ts": "never", | ||
// "tsx": "never" | ||
// } | ||
// ] | ||
}, | ||
"extends": ["plugin:@shipwreck/eslint-plugin/react"], | ||
"root": true | ||
} |
{ | ||
"name": "@calebz/react-theme-generator", | ||
"version": "0.0.2", | ||
"version": "0.0.4", | ||
"description": "A tool used to easily and quickly create themes.", | ||
"main": "lib/index.js", | ||
"main": "lib-commonjs/index.js", | ||
"module": "lib/index.js", | ||
"typings": "lib/index.d.ts", | ||
@@ -15,4 +16,3 @@ "sideEffects": false, | ||
"start": "storybook", | ||
"build": "tsc", | ||
"bundle-size": "bundle-size measure", | ||
"build": "just-scripts build", | ||
"test": "test --passWithNoTests", | ||
@@ -25,33 +25,8 @@ "test-fix": "just-scripts test-fix", | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"prettier": "^2.4.1", | ||
"husky": "^7.0.0", | ||
"typescript": "^4.5.5", | ||
"@types/enzyme": "3.10.9", | ||
"@types/jest": "^27.0.2", | ||
"@types/node": "14.14.33", | ||
"@types/react-dom": "17.0.9", | ||
"@types/react": "17.0.26", | ||
"eslint": "^7.32.0", | ||
"eslint-config-airbnb": "^19.0.4", | ||
"eslint-config-airbnb-typescript": "^16.1.0", | ||
"eslint-config-next": "^12.0.7", | ||
"eslint-plugin-import": "^2.25.4", | ||
"eslint-plugin-jsx-a11y": "^6.5.1", | ||
"eslint-plugin-react": "^7.28.0", | ||
"eslint-plugin-react-hooks": "^4.3.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-plugin-cypress": "^2.10.3", | ||
"eslint-plugin-jest": "24.5.2", | ||
"eslint-plugin-deprecation": "^1.3.2", | ||
"@typescript-eslint/eslint-plugin": "^5.9.0", | ||
"@typescript-eslint/parser": "^5.9.0" | ||
}, | ||
"peerDependencies": { | ||
"@types/react": ">=16.8.0 <18.0.0", | ||
"@types/react-dom": ">=16.8.0 <18.0.0", | ||
"react": ">=16.8.0 <18.0.0", | ||
"react-dom": ">=16.8.0 <18.0.0" | ||
"@shipwreck/scripts": "^0.0.7", | ||
"@shipwreck/eslint-plugin": "^0.0.0" | ||
} | ||
} |
{ | ||
"extends": "@shipwreck/scripts/src/configs/react/tsconfig.base.json", | ||
"include": ["./src"], | ||
"compilerOptions": { | ||
"module": "esnext", | ||
"target": "esnext", | ||
"sourceMap": true, | ||
"declaration": true, | ||
"declarationMap": true, | ||
"noEmitOnError": true, | ||
"skipLibCheck": true, | ||
"esModuleInterop": true, | ||
"strict": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"moduleResolution": "node", | ||
"jsx": "react", | ||
"lib": ["esnext", "dom"], | ||
"types": ["jest", "@types/jest"], | ||
"baseUrl": ".", | ||
"outDir": "lib" | ||
}, | ||
"include": ["./src"], | ||
"exclude": ["lib/**/*", "lib-commonjs/**/*", "node_modules"] | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
46345
0
4
88
637