-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.62 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
{
"name": "pi-coding-agent-action",
"version": "2.26.0",
"private": true,
"description": "CI/CD Action to integrate Pi coding agent in workflows",
"scripts": {
"package": "tsx packages/pi-action/scripts/package.ts",
"dist-version": "tsx scripts/dist-version.ts",
"dist-commit-msg": "tsx scripts/dist-commit-msg.mts",
"pi-cli": "tsx packages/pi-cli/src/index.ts",
"prepare": "pnpm run package",
"test": "vitest run",
"test:e2e": "RUN_E2E_TESTS=1 vitest run tests/e2e",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint packages/*/src packages/*/tests tests --ext .ts",
"lint:fix": "eslint packages/*/src packages/*/tests tests --ext .ts --fix",
"type-check": "tsc --noEmit",
"format": "prettier --check 'packages/*/src/**/*.ts' 'packages/*/tests/**/*.ts' 'tests/**/*.ts'",
"format:fix": "prettier --write 'packages/*/src/**/*.ts' 'packages/*/tests/**/*.ts' 'tests/**/*.ts'",
"validate": "pnpm run lint && pnpm run type-check && pnpm run format",
"changelog": "tsx scripts/changelog.ts",
"semantic-release": "semantic-release",
"update-readme": "tsx scripts/update-readme-deps.ts",
"sync-versions": "tsx scripts/sync-versions.ts",
"sync-lockfile": "tsx scripts/sync-lockfile.ts",
"fallow": "fallow",
"fallow:dead-code": "fallow dead-code",
"fallow:dupes": "fallow dupes",
"fallow:fix:dry": "fallow fix --dry-run",
"fallow:fix": "fallow fix --yes"
},
"packageManager": "pnpm@11.15.0",
"keywords": [
"github-action",
"pi",
"coding-agent",
"ai"
],
"author": "Alexander Fortin",
"license": "MIT",
"dependencies": {
"@alexanderfortin/pi-orchestrator": "workspace:*",
"@alexanderfortin/pi-platform-github": "workspace:*",
"@earendil-works/pi-agent-core": "^0.81.1",
"@earendil-works/pi-ai": "^0.81.1",
"@earendil-works/pi-coding-agent": "^0.81.1"
},
"devDependencies": {
"@alexanderfortin/semantic-release-keep-a-changelog": "^0.4.9",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.0",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@actions/github": "^9.1.1",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.7.0",
"fallow": "^3.7.1",
"prettier": "^3.9.6",
"semantic-release": "^25.0.8",
"tsx": "^4.20.3",
"typescript": "~6.0.3",
"vitest": "^4.1.0"
}
}