-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 947 Bytes
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
{
"name": "pharn-oss",
"version": "0.1.0",
"private": true,
"description": "PHARN open-source methodology — skills, commands, lenses, rules for Claude Code",
"type": "module",
"scripts": {
"format": "prettier --write \"**/*.{md,json,jsonc,yaml,yml,cjs,mjs}\"",
"format:check": "prettier --check \"**/*.{md,json,jsonc,yaml,yml,cjs,mjs}\"",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:js": "eslint \"**/*.{cjs,mjs}\"",
"validate": "node scripts/validate.mjs",
"test": "node --test",
"check": "npm run format:check && npm run lint:md && npm run lint:js && npm run validate && npm run test"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"gray-matter": "^4.0.3",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.4"
},
"engines": {
"node": ">=20"
}
}