-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.43 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@withkata/core",
"version": "0.1.0",
"description": "Development Methodology Engine — encode, compose, and improve development workflows",
"type": "module",
"bin": {
"kata": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/domain/types/index.js",
"types": "./dist/domain/types/index.d.ts"
},
"./types": {
"import": "./dist/domain/types/index.js",
"types": "./dist/domain/types/index.d.ts"
}
},
"files": [
"dist",
"stages",
"templates",
"skill"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli/index.ts",
"test": "npm run test:unit && npm run test:integration",
"test:acceptance": "vitest run --config vitest.acceptance.config.ts",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "npm run test && npm run test:acceptance && npm run build && npm run test:e2e",
"test:mutation:dry": "stryker run --dryRunOnly",
"test:mutation": "stryker run",
"test:mutation:all": "stryker run --mutate \"src/**/*.ts,src/**/*.tsx,!src/**/*.test.ts,!src/**/*.test.tsx,!src/cli/index.ts,!src/**/index.ts\"",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverage:unit": "vitest run --config vitest.coverage-unit.config.ts --coverage",
"test:crap": "node ./scripts/run-crap-diff.mjs origin/main",
"test:arch": "depcruise src --config .dependency-cruiser.cjs --output-type err",
"test:arch:unit": "vitest run --config vitest.arch.config.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"verify": "npm run lint && npm run typecheck && npm run test && npm run test:acceptance && npm run build && npm run test:e2e",
"verify:quality": "npm run test:coverage:unit && npm run test:crap && npm run test:arch && npm run test:arch:unit",
"verify:full": "npm run verify && npm run verify:quality && npm run test:mutation",
"prepublishOnly": "npm run verify",
"prepare": "husky",
"changelog:generate": "git-cliff --output changelog.md"
},
"keywords": [
"methodology",
"development",
"pipeline",
"workflow",
"cli",
"shape-up",
"kata"
],
"author": "Christopher Bays",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cmbays/kata.git"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.2.1",
"commander": "^14.0.3",
"ink": "^6.8.0",
"react": "^19.2.4",
"zod": "^4.3.6"
},
"lint-staged": {
"*.{ts,tsx}": "eslint"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stryker-mutator/core": "^9.6.0",
"@stryker-mutator/typescript-checker": "^9.6.0",
"@stryker-mutator/vitest-runner": "^9.6.0",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@vitest/coverage-v8": "^4.0.18",
"archunit": "^2.1.63",
"crap4ts": "https://codeload.github.com/breezy-bays-labs/crap4ts/tar.gz/d8b9b800811824a5fabb7ee87e7308f0bfc4028a",
"dependency-cruiser": "^17.3.9",
"eslint": "^10.0.1",
"eslint-plugin-boundaries": "^5.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"pixelmatch": "^7.1.0",
"quickpickle": "^1.11.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}