forked from shaftoe/pi-coding-agent-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.61 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
{
"name": "pi-coding-agent-action",
"version": "2.25.1",
"private": true,
"description": "CI/CD Action to integrate Pi coding agent in workflows",
"workspaces": [
"packages/*"
],
"scripts": {
"package": "bun packages/pi-action/scripts/package.ts",
"dist-version": "bun run scripts/dist-version.ts",
"dist-commit-msg": "bun run scripts/dist-commit-msg.ts",
"pi-cli": "bun packages/pi-cli/src/index.ts",
"prepare": "bun run package",
"test": "bun test",
"test:e2e": "RUN_E2E_TESTS=1 bun test tests/e2e",
"test:coverage": "bun test --coverage --coverage-reporter=lcov",
"test:watch": "bun test --watch",
"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": "bun run lint && bun run type-check && bun run format",
"changelog": "bun run scripts/changelog.ts",
"semantic-release": "semantic-release",
"update-readme": "bun run scripts/update-readme-deps.ts",
"sync-versions": "bun run scripts/sync-versions.ts",
"sync-lockfile": "bun run scripts/sync-lockfile.ts",
"fallow": "bunx fallow",
"fallow:dead-code": "bunx fallow dead-code",
"fallow:dupes": "bunx fallow dupes",
"fallow:fix:dry": "bunx fallow fix --dry-run",
"fallow:fix": "bunx fallow fix --yes"
},
"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.80.7",
"@earendil-works/pi-ai": "^0.80.7",
"@earendil-works/pi-coding-agent": "^0.80.7"
},
"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": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.64.0",
"@typescript-eslint/parser": "^8.64.0",
"bun-types": "1.3.14",
"eslint": "^10.7.0",
"fallow": "^3.5.1",
"prettier": "^3.9.5",
"semantic-release": "^25.0.7",
"typescript": "^6.0.3"
}
}