-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.6 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.6 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@fro-bot/agent-workspace",
"version": "0.0.0-development",
"private": true,
"description": "@fro-bot Agent",
"keywords": [
"github-actions",
"nodejs",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fro-bot/agent.git"
},
"license": "MIT",
"author": "Fro Bot <agent@fro.bot>",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"bootstrap": "SKIP_INSTALL_SIMPLE_GIT_HOOKS=1 pnpm install --no-strict-peer-dependencies --prefer-offline --loglevel warn",
"build": "pnpm --filter @fro-bot/runtime build && pnpm --filter @fro-bot/action build",
"check-types": "pnpm --filter @fro-bot/runtime check-types && pnpm --filter @fro-bot/action check-types",
"fix": "pnpm --filter @fro-bot/runtime fix && pnpm --filter @fro-bot/action fix",
"postinstall": "simple-git-hooks",
"lint": "pnpm --filter @fro-bot/runtime lint && pnpm --filter @fro-bot/action lint",
"test": "pnpm --filter @fro-bot/runtime test && pnpm --filter @fro-bot/action test"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"pre-push": "pnpm lint && pnpm build"
},
"lint-staged": {
"*.{ts,js,jsx,tsx,css,md,json,yaml,yml}": [
"pnpm run fix"
]
},
"prettier": "@bfra.me/prettier-config/120-proof",
"dependencies": {
"@actions/artifact": "6.2.1",
"@actions/cache": "6.0.0",
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.0",
"@actions/tool-cache": "4.0.0",
"@aws-sdk/client-s3": "3.1031.0",
"@bfra.me/es": "0.1.0",
"@fro-bot/runtime": "workspace:*",
"@octokit/auth-app": "8.2.0",
"@opencode-ai/sdk": "1.14.20"
},
"devDependencies": {
"@bfra.me/eslint-config": "0.51.0",
"@bfra.me/prettier-config": "0.16.8",
"@bfra.me/tsconfig": "0.13.0",
"@octokit/webhooks-types": "7.6.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@types/node": "24.12.2",
"@vitest/eslint-plugin": "1.6.16",
"conventional-changelog-conventionalcommits": "9.3.1",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"generate-license-file": "4.1.1",
"jiti": "2.6.1",
"js-yaml": "4.1.1",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"read-package-up": "12.0.0",
"semantic-release": "25.0.3",
"simple-git-hooks": "2.13.1",
"tsdown": "0.21.9",
"typescript": "6.0.3",
"vitest": "4.1.4"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"fast-xml-parser": ">=5.7.0"
}
}
}