-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "pi-posher",
"version": "0.3.2",
"description": "Helps clankers keep code prim and proper with linters, formatters and security tools",
"type": "module",
"license": "MIT",
"author": "jeffphil",
"repository": {
"type": "git",
"url": "git+https://github.com/jeff-phil/pi-posher.git",
"directory": "."
},
"homepage": "https://github.com/jeff-phil/pi-posher#readme",
"bugs": "https://github.com/jeff-phil/pi-posher/issues",
"keywords": [
"audit",
"format",
"lint",
"code-quality",
"sast",
"formatters",
"linters",
"conversions",
"converters",
"posher",
"postflight",
"poshify",
"pi",
"pi-package"
],
"engines": {
"node": ">=22.19.0"
},
"files": ["CONTRIBUTING.md", "LICENSE", "README.md", "src"],
"pi": {
"extensions": ["src/index.ts"],
"image": "https://raw.githubusercontent.com/jeff-phil/pi-posher/refs/heads/main/assets/pi-posher.webp"
},
"scripts": {
"test": "node --test \"test/**/*.test.mjs\"",
"lint": "eslint src/ test/",
"format": "prettier --write 'src/**/*' 'test/**/*' '*.md' '*.mjs'",
"prepublishOnly": "npm test && npm run lint && npx tsc --noEmit"
},
"dependencies": {
"ignore": "^7.0.5"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.6.0",
"markdownlint-cli": "^0.48.0",
"node-jq": "^6.3.1",
"prettier": "^3.8.3",
"typebox": "^1.1.39",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4"
}
}