-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "development-skills-library",
"version": "1.0.0",
"description": "A codified skill library for mixed human/agent teams for software development",
"main": "index.js",
"scripts": {
"format": "prettier --write . && markdownlint-cli2 --fix",
"lint:check": "prettier --check . && markdownlint-cli2",
"lint": "npm run lint:check",
"secretlint": "secretlint \"**/*\"",
"spell-check": "cspell \"**/*.md\"",
"test": "node -e \"console.log('No tests configured')\"",
"validate:skills": "node scripts/validate-skill-structure.cjs",
"verify": "npm run lint:check && npm run spell-check && npm run secretlint",
"prepare": "husky"
},
"engines": {
"node": ">=24 <25"
},
"lint-staged": {
"**/*.{json,cjs,yaml,yml}": [
"prettier --write"
],
"**/*.md": [
"prettier --write",
"markdownlint-cli2 --fix",
"cspell"
],
"**/*": [
"secretlint --no-color"
]
},
"keywords": [
"agents",
"skills",
"monorepo",
"governance"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@nx/js": "^22.3.3",
"@secretlint/secretlint-rule-preset-recommend": "^11.2.4",
"cspell": "^9.4.0",
"danger": "^13.0.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"markdown-link-check": "^3.14.2",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.6.2",
"secretlint": "^11.2.3"
},
"volta": {
"node": "24.12.0"
}
}