Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrothenberg committed Jan 13, 2025
1 parent b0724d7 commit 55d4df1
Showing 1 changed file with 80 additions and 68 deletions.
148 changes: 80 additions & 68 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,69 +1,81 @@
{
"name": "remix-themes",
"version": "0.0.0-semantically-released",
"description": "An abstraction for themes in your Remix_run app.",
"keywords": ["remix", "remix.run", "react", "themes", "dark mode", "light mode"],
"homepage": "https://github.com/abereghici/remix-themes#readme",
"bugs": {
"url": "https://github.com/abereghici/remix-themes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abereghici/remix-themes.git"
},
"license": "MIT",
"author": "Alexandru Bereghici",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"workspaces": ["test-apps/*", "."],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external=react",
"format": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"lint": "biome lint .",
"test": "vitest run",
"app:dev": "npm run dev -w test-apps/react-router-app",
"app:build": "npm run build -w test-apps/react-router-app",
"app:start": "npm run app:build && npm run start -w test-apps/react-router-app start",
"test:e2e:dev": "playwright test",
"pretest:e2e:run": "npm-run-all --parallel build app:build",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc",
"validate": "npm-run-all --parallel typecheck lint test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.1",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"@vitest/coverage-v8": "2.1.8",
"cross-env": "7.0.3",
"happy-dom": "16.5.3",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"react-router": "7.1.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"peerDependencies": {
"react-router": ">=7.0.0"
}
}
"name": "remix-themes",
"version": "0.0.0-semantically-released",
"description": "An abstraction for themes in your Remix_run app.",
"keywords": [
"remix",
"remix.run",
"react",
"themes",
"dark mode",
"light mode"
],
"homepage": "https://github.com/abereghici/remix-themes#readme",
"bugs": {
"url": "https://github.com/abereghici/remix-themes/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abereghici/remix-themes.git"
},
"license": "MIT",
"author": "Alexandru Bereghici",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"workspaces": [
"test-apps/*",
"."
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean --external=react",
"format": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"lint": "biome lint .",
"test": "vitest run",
"app:dev": "npm run dev -w test-apps/react-router-app",
"app:build": "npm run build -w test-apps/react-router-app",
"app:start": "npm run app:build && npm run start -w test-apps/react-router-app start",
"test:e2e:dev": "playwright test",
"pretest:e2e:run": "npm-run-all --parallel build app:build",
"test:e2e:run": "cross-env CI=true playwright test",
"typecheck": "tsc",
"validate": "npm-run-all --parallel typecheck lint test"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "1.49.1",
"@testing-library/dom": "10.4.0",
"@testing-library/react": "16.1.0",
"@types/node": "22.10.5",
"@types/react": "19.0.4",
"@types/react-dom": "19.0.2",
"@vitest/coverage-v8": "2.1.8",
"cross-env": "7.0.3",
"happy-dom": "16.5.3",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"react-router": "7.1.1",
"tsup": "8.3.5",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"peerDependencies": {
"react-router": ">=7.0.0"
}
}

0 comments on commit 55d4df1

Please sign in to comment.