-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.24 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.24 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
{
"name": "pi-coding-agent-action",
"version": "2.19.0",
"description": "CI/CD Action to integrate Pi coding agent in workflows",
"main": "dist/index.js",
"scripts": {
"package": "bun scripts/package.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 src tests scripts --ext .ts",
"lint:fix": "eslint src tests scripts --ext .ts --fix",
"type-check": "tsc --noEmit",
"format": "prettier --check src/**/*.ts tests/**/*.ts scripts/**/*.ts",
"format:fix": "prettier --write src/**/*.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",
"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": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@earendil-works/pi-agent-core": "^0.78.0",
"@earendil-works/pi-ai": "^0.78.0",
"@earendil-works/pi-coding-agent": "^0.78.0",
"@js-temporal/polyfill": "^0.5.1",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"ignore": "^7.0.5",
"typebox": "^1.1.39"
},
"devDependencies": {
"@alexanderfortin/semantic-release-keep-a-changelog": "^0.3.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "12.0.8",
"@semantic-release/npm": "^13.1.5",
"@types/node": "25.9.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"bun-types": "1.3.14",
"esbuild": "^0.28.0",
"eslint": "10.4.1",
"fallow": "^2.87.0",
"prettier": "^3.8.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3"
}
}