-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "@azure-tools/python-codegen-monorepo",
"private": true,
"version": "0.1.0",
"description": "Monorepo for python codegen",
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"preinstall": "npx only-allow pnpm",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"lint": "pnpm -r run lint",
"format": "npx prettier **/*.ts --write",
"check-format": "npx prettier **/*.ts --check --end-of-line auto",
"check-version-mismatch": "syncpack list-mismatches --types prod,peer",
"fix-version-mismatch": "syncpack fix-mismatches",
"change": "chronus"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/autorest.python.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/autorest.python/issues"
},
"homepage": "https://github.com/Azure/autorest.python#readme",
"devDependencies": {
"@actions/github": "6.0.0",
"@chronus/chronus": "^0.12.1",
"@chronus/github": "^0.4.4",
"@eslint/js": "^9.11.1",
"autorest": "~3.7.1",
"cross-env": "^7.0.3",
"eslint": "^9.11.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-unicorn": "^55.0.0",
"prettier": "~3.3.3",
"syncpack": "^13.0.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.7.0"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
}
}