-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 6.46 KB
/
package.json
File metadata and controls
174 lines (174 loc) · 6.46 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "@lightspeedwp/github-community-health",
"version": "0.2.0",
"description": "The GitHub Community Health file for LightspeedWP. Community health files, agent scripts, and automation for the LightSpeed WordPress organization.",
"license": "GPL-3.0-or-later",
"author": {
"name": "LightSpeedWP Team",
"email": "support@lightspeedwp.agency",
"url": "https://lightspeedwp.agency"
},
"repository": "https://github.com/lightspeedwp/.github.git",
"homepage": "https://github.com/lightspeedwp/.github",
"bugs": {
"url": "https://github.com/lightspeedwp/.github/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/lightspeedwp/"
},
"keywords": [
"agents",
"instructions",
"chatmodes",
"prompts",
"ai",
"community-health",
"github",
"workflows",
"wordpress",
"automation",
"contributing",
"security",
"support"
],
"contributors": [
{
"name": "Ash Shaw",
"email": "support@lightspeedwp.agency",
"url": "https://github.com/ashleyshaw"
},
{
"name": "LightSpeedWP Team",
"url": "https://github.com/lightspeedwp"
}
],
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"type": "module",
"main": "index.js",
"files": [
"README.md",
"LICENSE",
"SECURITY.md",
"SUPPORT.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md",
"CHANGELOG.md",
"DEVELOPMENT.md",
"CODEOWNERS",
"docs/",
"scripts/",
".github/"
],
"scripts": {
"prepare": "husky",
"check": "npm run lint:all && npm run test",
"lint:baseline": "mkdir -p .github/reports/linting && eslint \"**/*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern --format stylish > .github/reports/linting/eslint-baseline.txt || true",
"lint:baseline:json": "mkdir -p .github/reports/linting && eslint \"**/*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern -f json -o .github/reports/linting/eslint-baseline.json || true",
"lint:baseline:post-wave-1": "mkdir -p .github/reports/linting && eslint \"**/*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern -f json -o .github/reports/linting/eslint-baseline-post-wave-1.json || true",
"lint:pkg-json": "npmPkgJsonLint --configFile .npmpackagejsonlint.config.cjs .",
"lint:yaml": "spectral lint '**/*.{yml,yaml}' --ruleset .spectral.config.cjs",
"lint:workflows": "spectral lint '.github/workflows/*.{yml,yaml}' --ruleset .spectral-workflows.cjs",
"lint:json": "node scripts/validation/validate-json.js --validate-only --strict",
"lint": "npm run lint:js && npm run lint:yaml && npm run lint:pkg-json",
"lint:all": "npm run lint && npm run lint:workflows && npm run lint:md && npm run lint:json",
"lint:js": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"lint:md": "markdownlint-cli2 \"**/*.{md,mdx}\" \"!node_modules\"",
"lint:md:fix": "markdownlint-cli2 --fix \"**/*.{md,mdx}\" \"!node_modules\"",
"format:js": "prettier '**/*.{js,jsx,ts,tsx}' --write && prettier '**/*.json' --write && eslint '**/*.{js,jsx,ts,tsx}' --fix --format && eslint '**/*.json' --fix --format",
"format:md": "prettier '**/*.md' --write && markdownlint-cli2 --fix \"**/*.{md,mdx}\" \"!node_modules\"",
"format:json": "prettier '**/*.json' --write '!package-lock.json' '!**/node_modules/**'",
"format": "npm run format:js && npm run format:md",
"validate:json": "node scripts/validation/validate-json.js",
"validate:json:schemas": "node scripts/validation/validate-json.js --glob '.github/schemas/**/*.schema.json' --strict",
"validate:json:all": "node scripts/validation/validate-json.js --glob '**/*.json' --strict",
"validate:agents": "node scripts/validation/validate-agent-frontmatter.js",
"validate:workflows": "node scripts/validation/validate-workflows.js",
"validate:all": "npm run validate:agents && npm run validate:workflows && npm run validate:json:all",
"eslint:delta:wave-1": "node scripts/compute-eslint-delta-wave-1.js",
"sync-version": "node scripts/sync-version.js",
"metrics:run": "node metrics/frontmatter-metrics.js",
"metrics:ci": "node metrics/frontmatter-metrics.js",
"test:js": "jest --config .jest.config.cjs --coverage --forceExit --detectOpenHandles",
"test": "npm run test:js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"
},
"devDependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.1",
"@babel/core": "7.28.5",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-transform-runtime": "7.28.5",
"@babel/preset-env": "7.28.5",
"@babel/preset-react": "7.27.1",
"@babel/preset-typescript": "7.28.5",
"@babel/runtime": "^7.24.1",
"@github/markdownlint-github": "^0.8.0",
"@jest/pattern": "30.0.1",
"@mermaid-js/mermaid-cli": "11.4.0",
"@stoplight/spectral-cli": "^6.11.0",
"@stoplight/spectral-core": "^1.18.0",
"@stoplight/spectral-functions": "^1.0.0",
"@types/jest": "29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"ajv": "^8.17.1",
"ajv-cli": "5.0.0",
"ajv-formats": "^3.0.1",
"all-contributors-cli": "6.26.1",
"babel-jest": "29.7.0",
"bats": "^1.8.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"glob": "10.5.0",
"gray-matter": "^4.0.3",
"husky": "^9.0.0",
"jest": "30.2.0",
"jest-environment-jsdom": "^30.0.1",
"js-yaml": "^4.1.1",
"lint-staged": "^15.0.0",
"markdownlint": "^0.28.1",
"markdownlint-cli2": "0.19.0",
"markdownlint-cli2-formatter-pretty": "^0.0.6",
"mermaid": "^10.9.0",
"micromatch": "^4.0.7",
"node-fetch": "^3.3.2",
"npm-package-json-lint": "^7.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"puppeteer": "^23.11.1",
"ts-jest": "29.4.5",
"typescript": "^5.0.0",
"typescript-eslint": "8.47.0",
"yaml": "2.8.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"markdownlint-cli2 --fix"
],
"*.json": [
"prettier --write"
],
"*.{yml,yaml}": [
"prettier --write"
]
},
"overrides": {
"fast-json-patch": "3.1.1",
"tmp": "0.2.4"
}
}