-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.64 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
{
"name": "context-probe",
"version": "0.1.0",
"description": "CLI for evidence-based design measurement",
"license": "Apache-2.0",
"type": "module",
"homepage": "https://github.com/CAPHTECH/context-probe",
"bugs": {
"url": "https://github.com/CAPHTECH/context-probe/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/CAPHTECH/context-probe.git"
},
"bin": {
"context-probe": "./dist/src/cli.js"
},
"files": [
"dist",
"README.md",
"README.ja.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\" && tsc -p tsconfig.build.json",
"analytics:summarize": "tsx scripts/analytics/summarize-event-log.ts",
"check:audit": "npm audit --audit-level=moderate",
"check": "npm run check:ts && npm run check:biome && npm run check:deps && npm run check:knip",
"check:biome": "biome ci .",
"check:deps": "depcruise --config .dependency-cruiser.cjs src",
"check:knip": "knip --config knip.json",
"check:ts": "tsc -p tsconfig.json --noEmit",
"dev": "tsx src/cli.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"prepack": "npm run build",
"prepublishOnly": "npm run release:preflight",
"release:preflight": "npm run check && npm run check:audit && npm run test:coverage && npm run self:architecture:check && npm run build && npm pack --dry-run",
"self:architecture:audit": "node scripts/self-measurement/audit-architecture-freshness.mjs",
"self:architecture:baseline": "tsx scripts/self-measurement/capture-architecture-contract-baseline.ts",
"self:architecture:check": "node scripts/self-measurement/check-architecture-self-measurement.mjs",
"self:architecture:complexity": "node scripts/self-measurement/capture-architecture-complexity-export.mjs",
"self:architecture:refresh": "node scripts/self-measurement/refresh-architecture-inputs.mjs",
"self:quality:summary": "node scripts/self-measurement/summarize-self-measurement-quality.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:pbt": "vitest run test/pbt/*.test.ts",
"test:watch": "vitest"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"minimatch": "^10.0.1",
"typescript": "^5.8.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^3.2.4",
"dependency-cruiser": "^17.3.10",
"fast-check": "^4.6.0",
"knip": "^6.1.0",
"tsx": "^4.20.3",
"vitest": "^3.2.4"
}
}