aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 5 insertions, 3 deletions
diff --git a/package.json b/package.json
index f632a8c..1ca72f9 100644
--- a/package.json
+++ b/package.json
@@ -27,8 +27,11 @@
27 "compile:electron-builder": "electron-builder build --config .electron-builder.config.cjs --dir", 27 "compile:electron-builder": "electron-builder build --config .electron-builder.config.cjs --dir",
28 "watch": "node scripts/watch.js", 28 "watch": "node scripts/watch.js",
29 "watch:test": "yarn test --watch", 29 "watch:test": "yarn test --watch",
30 "lint": "yarn types && eslint .", 30 "lint": "yarn types && yarn lint:only",
31 "typecheck": "yarn types && yarn workspaces foreach -vp run typecheck:workspace", 31 "lint:only": "cross-env NODE_OPTIONS=\"--max-old-space-size=16384\" eslint . --ext .cjs,.js,.jsx,.ts,.tsx",
32 "lint:ci": "yarn lint:only --format gitlab",
33 "typecheck": "yarn types && yarn typecheck:ci",
34 "typecheck:ci": "yarn workspaces foreach -vp run typecheck:workspace",
32 "typecheck:workspace": "yarn g:typecheck", 35 "typecheck:workspace": "yarn g:typecheck",
33 "g:typecheck": "cd $INIT_CWD && tsc", 36 "g:typecheck": "cd $INIT_CWD && tsc",
34 "types": "yarn workspaces foreach -vpt run types", 37 "types": "yarn workspaces foreach -vpt run types",
@@ -69,7 +72,6 @@
69 "git-repo-info": "^2.1.1", 72 "git-repo-info": "^2.1.1",
70 "jest": "^27.4.7", 73 "jest": "^27.4.7",
71 "rimraf": "^3.0.2", 74 "rimraf": "^3.0.2",
72 "rollup": "^2.63.0",
73 "typescript": "^4.5.4", 75 "typescript": "^4.5.4",
74 "vite": "^2.7.10" 76 "vite": "^2.7.10"
75 }, 77 },