-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.59 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.59 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
{
"name": "@private-landing/root",
"version": "1.6.0",
"description": "Private Landing — Authentication Reference",
"license": "Apache-2.0",
"homepage": "https://github.com/vhscom/private-landing/",
"repository": {
"type": "git",
"url": "https://github.com/vhscom/private-landing",
"directory": "."
},
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"engines": {
"node": ">=24.0.0",
"bun": ">=1.0.0"
},
"scripts": {
"clean": "bun run --filter '@private-landing/*' clean",
"build": "bun run --filter '@private-landing/*' build && bun run build:workers",
"build:workers": "bun run --cwd apps/cloudflare-workers wrangler:build --env=''",
"dev": "bun run --filter '@private-landing/*' build && bun apps/cloudflare-workers/src/dev.ts",
"dev:local": "bun run --filter '@private-landing/*' build && bun apps/cloudflare-workers/src/dev.ts --local",
"test": "vitest run && bun run test:integration",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "bun run --cwd apps/cloudflare-workers test:run",
"test:plugins": "bun run --cwd apps/cloudflare-workers test:plugins",
"test:watch": "vitest",
"typecheck": "bun run --filter '@private-landing/*' typecheck",
"lint": "biome lint",
"format": "biome check --write .",
"format:packages": "biome check --write packages",
"cli:build": "cd tools/cli && go build -o plctl ./cmd/plctl",
"cli:start": "./tools/cli/plctl",
"cli:test": "cd tools/cli && go test ./..."
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@vitest/coverage-v8": "~3.2.x",
"vitest": "~3.2.x"
}
}