-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.7 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.7 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
{
"name": "@blen/ashlar-workspace",
"version": "0.0.0",
"description": "Government-first, evidence-backed component registry for public-service interfaces.",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=24.15.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.15.0",
"onFail": "download"
}
},
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"lint": "turbo run lint",
"check": "turbo run lint typecheck test",
"commitlint": "commitlint",
"examples:visual": "pnpm build && node scripts/example-visual-smoke.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"public-language:check": "node scripts/check-public-language.mjs",
"repo:doctor": "node scripts/doctor.mjs",
"testing:start": "node scripts/testing-session.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && node packages/cli/dist/index.js release provenance-check && changeset publish",
"release:github-packages": "pnpm build && changeset publish",
"release:verify-public": "node scripts/public-install-smoke.mjs",
"release:smoke": "node scripts/release-smoke.mjs",
"ashlar": "node packages/cli/dist/index.js"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@changesets/changelog-github": "catalog:",
"@changesets/cli": "catalog:",
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@playwright/test": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}