-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
73 lines (73 loc) · 2.4 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@azure-tools/cadl-ranch-monorepo",
"private": true,
"version": "0.1.0",
"description": "Monorepo for cadl-ranch",
"workspaces": [
"packages/*"
],
"type": "module",
"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": "eslint .",
"lint:fix": "eslint . --fix",
"format": "npm run -s prettier -- --write",
"format:check": "npm run -s prettier -- --check",
"check-version-mismatch": "syncpack list-mismatches",
"fix-version-mismatch": "syncpack fix-mismatches",
"validate-scenarios": "pnpm -r --filter=@azure-tools/cadl-ranch-specs run validate-scenarios",
"validate-mock-apis": "pnpm -r --filter=@azure-tools/cadl-ranch-specs run validate-mock-apis",
"generate-scenarios-summary": "pnpm -r --filter=@azure-tools/cadl-ranch-specs run generate-scenarios-summary",
"upload-manifest": "pnpm -r --filter=@azure-tools/cadl-ranch-specs run upload-manifest",
"prettier": "prettier --config ./.prettierrc.yaml **/*.{ts,js,cjs,mjs,json,yml,yaml,md,tsp}",
"cspell": "cspell \"**/*.md\" \"**/*.ts\" \"**/*.tsp\"",
"prepare-publish": "pnpm changeset version",
"pr-prep": "pnpm validate-scenarios && pnpm validate-mock-apis && pnpm generate-scenarios-summary && pnpm format && pnpm cspell"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azure/cadl-ranch.git"
},
"author": "Microsoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/cadl-ranch/issues"
},
"homepage": "https://github.com/Azure/cadl-ranch#readme",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.8.0",
"@types/node": "^22.1.0",
"@typespec/prettier-plugin-typespec": "~0.59.0",
"cspell": "^8.13.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"syncpack": "^12.4.0",
"ts-jest": "^29.2.4",
"typescript-eslint": "^8.0.0",
"typescript": "~5.5.4"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
}
}