-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.18 KB
/
package.json
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
{
"name": "alloy",
"private": true,
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r --workspace-concurrency=Infinity build",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"clean": "pnpm -r run clean && rimraf **/.temp/",
"test": "vitest run",
"format": "pnpm run prettier-exec --write",
"format:check": "pnpm run prettier-exec --check",
"prettier-exec": "prettier --config ./.prettierrc.yaml **/*.{ts,js,tsx,json,yml,yaml}",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"pnpm": {
"overrides": {
"esbuild": "0.23"
}
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@alloy-js/babel-preset": "workspace:~",
"@babel/preset-typescript": "catalog:",
"@chronus/chronus": "^0.13.0",
"@chronus/github": "^0.4.4",
"@chronus/github-pr-commenter": "^0.5.4",
"concurrently": "catalog:",
"eslint": "catalog:",
"eslint-plugin-vitest": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"rimraf": "catalog:",
"tsx": "^4.19.1",
"typescript-eslint": "catalog:",
"vitest": "catalog:"
}
}