-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "@ladesa-ro/especificacao-root",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "wireit",
"changeset:add": "changeset add",
"changeset:tag": "changeset tag",
"changeset:version": "changeset version && pnpm run -r --if-present patch-version",
"lint:check": "pnpm run -r --if-present lint:check && biome lint .",
"lint:fix": "pnpm run -r --if-present lint:fix && biome lint --write .",
"format:check": "pnpm run -r --if-present format:check && biome format .",
"format:fix": "pnpm run -r --if-present format:fix && biome format --write .",
"code-static:check": "pnpm run lint:check && pnpm run format:check",
"code-static:fix": "pnpm run lint:fix && pnpm run format:fix",
"prepare": "husky"
},
"dependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"rimraf": "^6.0.1",
"wireit": "^0.14.9"
},
"devDependencies": {
"@typespec/compiler": "^0.62.0"
},
"lint-staged": {
"!definitions/**/*": "pnpm run code-static:fix",
"definitions/**/*": [
"sh -c 'pnpm run build'",
"pnpm run code-static:fix",
"git add integrations/*"
]
},
"wireit": {
"build": {
"dependencies": [
"./definitions:build",
"./integrations/json-schema:build",
"./integrations/dotnet:build",
"./integrations/npm/especificacao:build"
]
}
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}