-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.5 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cruncher-monorepo",
"private": true,
"version": "",
"packageManager": "pnpm@10.12.1",
"description": "Cruncher monorepo.",
"pnpm": {
"overrides": {
"@tanstack/store": "^0.9.1",
"@tanstack/react-store": "^0.9.1"
},
"onlyBuiltDependencies": [
"@swc/core",
"better-sqlite3",
"bufferutil",
"core-js",
"electron",
"electron-winstaller",
"esbuild",
"msgpackr-extract",
"sharp",
"unrs-resolver",
"utf-8-validate"
]
},
"repository": {
"type": "git",
"url": "https://github.com/IamShobe/cruncher.git"
},
"scripts": {
"postinstall": "electron-rebuild --module-dir apps/cruncher --only better-sqlite3",
"start": "npm run serve",
"serve": "turbo watch build serve generate:watch --filter=!docs-cruncher --filter=!cruncher-tools",
"serve:docs": "pnpm run -F ./docs serve",
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"publish": "pnpm run --filter=cruncher publish",
"package": "pnpm run --filter=cruncher package",
"knip": "knip",
"lint": "oxlint packages/ apps/ tools/",
"lint:fix": "oxlint --fix packages/ apps/ tools/",
"format": "turbo run format",
"format:check": "turbo run format:check",
"test": "turbo run test",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"local-registry": "verdaccio --config .verdaccio/config.yml --listen 4873",
"prepare-pr": "changeset",
"changeset-version": "changeset version && pnpm install --lockfile-only",
"changeset-publish": "turbo run build --filter='./packages/**' && changeset publish",
"release:local": "bash scripts/release-local.sh",
"release": "changeset version && pnpm install --lockfile-only && changeset publish",
"push-all": "git push && git push --tags",
"local-registry:clear": "rm -rf tmp/local-registry/storage"
},
"keywords": [],
"author": {
"name": "Elran Shefer"
},
"license": "GPL-3.0-only",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"knip": "^5.86.0",
"@changesets/cli": "^2.30.0",
"@types/node": "25.3.5",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"copyfiles": "^2.4.1",
"jsdom": "~28.1.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"ts-node": "10.9.2",
"tslib": "^2.8.1",
"turbo": "^2.8.14",
"typescript": "^5.9.3",
"verdaccio": "^6.2.9",
"vite": "^7.3.1",
"vite-plugin-dts": "~4.5.4",
"vitest": "^4.0.18"
}
}