-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
28 lines (28 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "remix-electron-monorepo",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "pnpm run -r --filter ./workspaces/remix-electron build",
"lint": "biome lint .",
"format": "prettier --write --list-different .",
"typecheck": "pnpm -r exec tsc --noEmit",
"knip": "knip",
"checks": "npm-run-all --continue-on-error build lint typecheck knip test",
"test": "pnpm --filter ./workspaces/tests run test",
"test-ui": "pnpm --filter ./workspaces/tests run test-ui",
"release": "pnpm test && pnpm run release-only",
"release-only": "pnpm --filter ./workspaces/remix-electron exec release-it"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"knip": "^4.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"release-it": "^17.0.3",
"typescript": "^5.3.3"
}
}