Skip to content

Commit

Permalink
chore: scaffold basic stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
preco21 committed Mar 1, 2024
1 parent a950619 commit cad5ff7
Show file tree
Hide file tree
Showing 8 changed files with 1,390 additions and 126 deletions.
43 changes: 12 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"typecheck": "tsc --noEmit",
"build": "tsup --format esm,cjs --clean --dts",
"dev": "tsup --format esm,cjs --watch & eslint-flat-config-viewer",
"watch": "tsup --format esm,cjs --watch",
"clean": "rm -rf dist/",
"check-eslint-rules": "pnpm run '/^check-eslint-rules:.*/'",
"check-eslint-rules:index": "eslint-find-rules --unused --deprecated index.js",
Expand All @@ -46,50 +49,28 @@
"homepage": "https://github.com/preco21/eslint-config#readme",
"repository": "preco21/eslint-config",
"bugs": "https://github.com/preco21/eslint-config/issues",
"devDependencies": {
"@preco21/tsconfig": "^6.0.0",
"dependencies": {
"@stylistic/eslint-plugin": "^1.6.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"confusing-browser-globals": "^1.0.10",
"confusing-browser-globals": "^1.0.10"
},
"devDependencies": {
"@preco21/tsconfig": "^6.0.0",
"eslint": "^8.42.0",
"eslint-find-rules": "^4.0.0",
"eslint-flat-config-viewer": "^0.1.11",
"eslint-plugin-react": "^7.27.1",
"tsup": "^8.0.2",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"confusing-browser-globals": "^1.0.10",
"eslint": "^8.3.0",
"eslint": ">=8.40.0",
"eslint-plugin-react": "^7.27.1"
},
"peerDependenciesMeta": {
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"confusing-browser-globals": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
}
},
"sideEffects": false,
"eslintConfig": {
"root": true,
"extends": [
"./rules/base"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "script"
}
}
}
Loading

0 comments on commit cad5ff7

Please sign in to comment.