-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "podguy",
"version": "0.1.0",
"private": true,
"description": "Pi-first post-production workflow for podcasts and video podcasts.",
"keywords": [
"pi",
"podcast",
"post-production",
"transcription",
"video"
],
"homepage": "https://github.com/modem-dev/podguy#readme",
"bugs": {
"url": "https://github.com/modem-dev/podguy/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/modem-dev/podguy.git"
},
"scripts": {
"podguy": "./podguy",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint src/*.ts tests/*.ts --deny-warnings",
"lint:fix": "oxlint src/*.ts tests/*.ts --fix",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:shell": "bash scripts/test.sh",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.73.1",
"@types/node": "^25.9.0",
"lint-staged": "^17.0.5",
"oxfmt": "^0.50.0",
"oxlint": "^1.65.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,md,yml,yaml}": [
"oxfmt --write"
],
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"oxlint --fix"
]
},
"packageManager": "npm@11.11.0",
"pi": {
"skills": [
"./src"
],
"extensions": [
"./src/podguy-startup.ts"
],
"prompts": [
"./prompts"
]
}
}