-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.53 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.53 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": "coder-studio",
"private": true,
"scripts": {
"dev": "tsx scripts/dev.ts",
"dev:web": "tsx scripts/dev-web.ts",
"dev:server": "tsx scripts/dev-server.ts",
"build": "tsx scripts/build.ts",
"build:web": "tsx scripts/build-web.ts",
"build:cli": "tsx scripts/build-cli.ts",
"changeset": "changeset",
"changeset:validate": "tsx scripts/validate-changesets.ts",
"version-packages": "changeset version",
"publish:cli": "tsx scripts/publish-cli.ts",
"publish:wiki": "tsx scripts/publish-wiki.ts",
"ci:lint": "pnpm exec biome check --diagnostic-level=error --max-diagnostics=none .",
"ci:test:scripts": "pnpm exec vitest run --config scripts/vitest.config.ts scripts/publish-cli.test.ts scripts/build-cli.test.ts scripts/validate-changesets.test.ts scripts/husky-pre-commit.test.ts --environment node",
"ci:test:workspace": "pnpm -r --filter './packages/**' --if-present run test",
"ci:test": "pnpm ci:test:scripts && pnpm ci:test:workspace",
"ci:typecheck": "pnpm --filter @spencer-kit/coder-studio exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/utils exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/core exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/providers exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/server exec tsc -p tsconfig.json --noEmit && pnpm --filter @coder-studio/web exec tsc -p tsconfig.json --noEmit",
"ci:build": "pnpm --filter @coder-studio/server build && pnpm build",
"ci:verify": "pnpm changeset:validate && pnpm ci:lint && pnpm ci:test && pnpm ci:build",
"ci:release:validate": "pnpm ci:verify && pnpm publish:cli -- --no-build",
"acceptance:phase1": "pnpm --dir e2e exec playwright test --config playwright.config.ts --grep @phase1",
"acceptance:phase1:update-baseline": "pnpm --dir e2e exec playwright test --config playwright.config.ts --grep @phase1 --update-snapshots",
"acceptance:phase1:report": "node e2e/fixtures/report-writer.ts phase-1",
"e2e-ui": "tsx scripts/e2e-ui.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@coder-studio/utils": "workspace:*",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"husky": "^9.1.7",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}