-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "dixie",
"private": true,
"version": "0.3.2",
"description": "Prettier plugin for C# backed by a Roslyn host",
"author": "Project Dixie contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/df49b9cd/Dixie.git"
},
"engines": {
"node": ">=22.21.0"
},
"scripts": {
"build": "npm run build --workspaces",
"format": "npm run format --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"prepare": "husky",
"demo": "npm run demo --workspace @df49b9cd/prettier-plugin-csharp",
"build:host": "node scripts/build-host.mjs",
"ci:smoke": "npm run build:host && npm run smoke:host --workspace @df49b9cd/prettier-plugin-csharp",
"telemetry:report": "node scripts/telemetry-report.mjs"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"execa": "^9.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"typescript": "^5.4.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,cs}": "prettier --write",
"packages/prettier-plugin-csharp/src/**/*.{ts,tsx}": "npm run lint --workspace @df49b9cd/prettier-plugin-csharp -- --max-warnings=0"
}
}