-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.36 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
{
"name": "proxyforge",
"version": "0.0.1",
"private": true,
"description": "Free, self-hostable site to find any TCG card in every language and print playtest proxies at the fixed 63x88mm size. Public name: Proxy Printer.",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"typecheck": "tsc -b",
"test": "node --import tsx --test \"packages/**/test/*.test.ts\" \"apps/web/test/*.test.ts\"",
"test:net": "PPF_RUN_NET_TESTS=1 node --import tsx --test \"packages/**/test/*.test.ts\" \"apps/web/test/*.test.ts\"",
"migrate": "node --import tsx packages/db/src/migrate.ts",
"ingest": "node --import tsx packages/ingest/src/cli.ts",
"images": "node --import tsx packages/images/src/cli.ts",
"print": "node --import tsx packages/print/src/cli.ts",
"search": "node --import tsx packages/search/src/cli.ts",
"web:dev": "npm -w @proxyforge/web run dev",
"web:build": "npm -w @proxyforge/web run build",
"brand-lint": "node scripts/brand-lint.mjs",
"gpl-check": "node scripts/gpl-import-check.mjs",
"check": "npm run typecheck && npm run test && npm run brand-lint && npm run gpl-check"
},
"devDependencies": {
"@electric-sql/pglite": "^0.5.2",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}