-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "ai-sdlc",
"private": true,
"version": "0.1.0",
"description": "AI-SDLC Framework — open, vendor-neutral governance for AI-augmented software development lifecycles",
"license": "Apache-2.0",
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"typecheck": "pnpm -r --parallel exec tsc --noEmit",
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "pnpm -r clean",
"validate-schemas": "pnpm -C reference validate-schemas",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,mjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,yml,yaml}": [
"prettier --write"
],
"*.py": [
"ruff format",
"ruff check --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0"
}
}