-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.84 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@chronus/monorepo",
"version": "0.1.0",
"type": "module",
"description": "Monorepo for chronus",
"homepage": "https://github.com/timotheeguerin/chronus#readme",
"packageManager": "[email protected]",
"license": "MIT",
"private": true,
"author": "Microsoft",
"repository": "timotheeguerin/chronus.git",
"engines": {
"node": ">=16.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"change": "node ./packages/chronus/cmd/cli.mjs",
"test": "vitest run",
"test:watch": "vitest -w",
"preinstall": "npx only-allow pnpm",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"build": "pnpm -r run build",
"clean": "pnpm -r run clean && rimraf **/.temp/",
"lint": "eslint .",
"lint:sp": "syncpack lint",
"format": "npm run -s prettier -- --write && syncpack format",
"format:check": "npm run -s prettier -- --check",
"check-version-mismatch": "syncpack list-mismatches",
"fix-version-mismatch": "syncpack fix-mismatches",
"prettier": "prettier --config ./.prettierrc.yaml **/*.{ts,js,mjs,json,yml,yaml,md}",
"cspell": "cspell --no-progress ."
},
"devDependencies": {
"@actions/github": "^6.0.0",
"@chronus/github": "workspace:*",
"@eslint/js": "^9.14.0",
"@types/node": "^22.8.7",
"@typescript-eslint/parser": "^8.12.2",
"@typescript-eslint/utils": "^8.12.2",
"@vitest/ui": "^2.1.4",
"cspell": "^8.15.7",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"syncpack": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"vitest": "^2.1.4"
},
"bugs": "https://github.com/timotheeguerin/chronus/issues"
}