-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "lustra-cli",
"version": "0.1.2",
"description": "Stack-agnostic code-hygiene skill for AI coding agents: clean AI slop, find security flaws, dead code, dependency rot, design and logging issues; lint, format, type-check, test, review, migrate dependencies, and fix project structure.",
"license": "MIT",
"author": "Henrique Breim <henrique@breim.com.br>",
"repository": {
"type": "git",
"url": "git+https://github.com/breim/lustra.git"
},
"homepage": "https://github.com/breim/lustra#readme",
"bugs": "https://github.com/breim/lustra/issues",
"keywords": [
"agent-skill",
"claude-code",
"code-quality",
"security",
"dead-code",
"lint"
],
"bin": {
"lustra": "bin/lustra.js"
},
"files": [
"skill/",
"scripts/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node scripts/build.js",
"test": "node --test",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"verify": "npm run format:check && npm run lint && npm test",
"prepare": "husky",
"postinstall": "node scripts/postinstall.js",
"prepublishOnly": "node scripts/build.js"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"globals": "^17.6.0",
"husky": "^9.1.7",
"prettier": "^3.8.3"
}
}