-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 3.11 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
{
"name": "triplex-monorepo",
"version": "0.1.0",
"private": true,
"description": "An Effect-native fact database with Datalog and typed, content-addressed configuration.",
"author": "Ben Jacobson",
"type": "module",
"scripts": {
"build": "turbo run build && pnpm docs:build",
"changeset": "changeset",
"clean": "turbo run clean",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm docs:check && pnpm test && pnpm build",
"dev": "turbo watch build",
"docs:build": "vitepress build docs",
"docs:check": "node scripts/check-markdown-code.mjs && tsc --noEmit -p docs/snippets/tsconfig.json",
"docs:deploy": "alchemy deploy --stage prod",
"docs:dev": "vitepress dev docs",
"docs:plan": "alchemy plan --stage prod",
"docs:preview": "vitepress preview docs",
"dashboard": "pnpm --filter @triplex-build/triplex-dashboard dev",
"dashboard:serve": "turbo run build --filter=@triplex-build/triplex-dashboard && pnpm --filter @triplex-build/triplex-dashboard serve",
"triplex": "pnpm --filter @triplex-build/triplex-cli dev",
"example:compliance-host": "pnpm --filter triplex-compliance-host start",
"example:demo": "pnpm --filter triplex-demo start",
"example:http-api": "pnpm --filter triplex-http-api-example start",
"host:deploy": "pnpm --filter triplex-tenant-host-cloudflare deploy",
"host:dev": "pnpm --filter triplex-tenant-host-cloudflare dev",
"host:plan": "pnpm --filter triplex-tenant-host-cloudflare plan",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"pack:check": "node scripts/check-packages.mjs",
"release:publish": "pnpm build && pnpm pack:check && changeset publish",
"release:canary": "changeset version --snapshot next && pnpm install --lockfile-only && pnpm build && pnpm pack:check && changeset publish --tag next --no-git-tag",
"release:version": "changeset version && pnpm install --lockfile-only",
"test": "turbo run test",
"test:e2e": "playwright test",
"test:foundationdb:integration": "pnpm --filter @triplex-build/triplex-foundationdb test:integration",
"test:postgres:integration": "pnpm --filter @triplex-build/triplex-postgres test:integration",
"test:watch": "turbo watch test",
"typecheck": "tsc --noEmit -p tsconfig.alchemy.json && turbo run typecheck"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@effect/platform-node": "catalog:",
"@foldkit/ui": "catalog:",
"@fontsource-variable/ibm-plex-sans": "catalog:",
"@fontsource/ibm-plex-mono": "catalog:",
"@playwright/test": "catalog:",
"@shikijs/vitepress-twoslash": "catalog:",
"@tailwindcss/vite": "catalog:",
"@types/node": "catalog:",
"alchemy": "catalog:",
"effect": "catalog:",
"foldkit": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"tailwindcss": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitepress": "catalog:",
"vitest": "catalog:",
"vue": "catalog:"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.11.0"
}