-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.58 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
{
"name": "@gotgenes/pi-autoformat",
"version": "5.1.9",
"description": "Pi extension package for prompt-end auto-formatting",
"imports": {
"#src/*": "./src/*",
"#test/*": "./test/*"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"autoformat",
"formatter",
"prompt-end",
"biome",
"prettier",
"typescript"
],
"author": {
"name": "Chris Lasher"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gotgenes/pi-packages.git",
"directory": "packages/pi-autoformat"
},
"bugs": {
"url": "https://github.com/gotgenes/pi-packages/issues"
},
"homepage": "https://github.com/gotgenes/pi-packages/tree/main/packages/pi-autoformat#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"type": "module",
"files": [
"src",
"schemas",
"docs/*.md",
"docs/assets",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"pi": {
"extensions": [
"./src/extension.ts"
]
},
"scripts": {
"check": "tsc --noEmit",
"test": "vitest run --project unit",
"test:acceptance": "vitest run --project acceptance",
"test:all": "vitest run",
"test:watch": "vitest",
"lint:md": "rumdl check *.md docs/**/*.md",
"lint": "biome check . && eslint . && pnpm run lint:md"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@earendil-works/pi-coding-agent": "0.79.1",
"@types/node": "catalog:",
"rumdl": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}