-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
77 lines (77 loc) · 2.93 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
74
75
76
77
{
"name": "@jeromefitz/packages",
"type": "module",
"repository": "jeromefitz/packages.git",
"author": {
"name": "Jerome Fitzgerald",
"email": "j@jeromefitzgerald.com",
"url": "https://jeromefitzgerald.com"
},
"license": "MIT",
"private": true,
"packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9 <10"
},
"scripts": {
"build": "turbo run build --filter=[HEAD^1]",
"build:all": "turbo run build",
"clean": "turbo run clean --filter=[HEAD^1]",
"clean:all": "turbo run clean",
"clean:install": "turbo run clean && ./scripts/clean.sh",
"commit": "ALLOW_EMPTY=--allow-empty git commit --allow-empty",
"dev": "turbo run dev --no-cache --parallel --continue",
"format": "pnpm run format:prettier:write",
"format:lint": "turbo run format:lint",
"format:prettier:base": "prettier . --ignore-unknown",
"format:prettier:check": "pnpm format:prettier:base --check",
"format:prettier:write": "pnpm format:prettier:base --write",
"generate:releaseRules": "node ./packages/semantic/scripts/generateReleaseRules.js && pnpm run format:lint",
"lint": "turbo run lint --filter=[HEAD^1]",
"lint:all": "turbo run lint",
"lint:packages": "syncpack lint",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky",
"semantic-release": "pnpm semantic-release:mono",
"semantic-release:dry": "pnpm semantic-release:mono --dry-run",
"semantic-release:mono": "pnpm turbo run build --filter=\"@jeromefitz/semantic\" && pnpm --filter=\"@jeromefitz/*\" --filter=\"ccommit\" -r --workspace-concurrency=1 exec -- npx --no-install semantic-release",
"test": "turbo run test --filter=[HEAD^1]",
"test:all": "turbo run test",
"turbo": "TURBO_TELEMETRY_DISABLED=1 turbo"
},
"dependencies": {
"@jeromefitz/conventional-gitmoji": "workspace:*",
"@jeromefitz/eslint-config": "workspace:*",
"@jeromefitz/lint-staged": "workspace:*",
"@jeromefitz/prettier-config": "workspace:*",
"@jeromefitz/release-notes-generator": "workspace:*",
"@jeromefitz/semantic": "workspace:*",
"@jeromefitz/tsconfig": "workspace:*",
"@types/node": "22.10.2",
"ccommit": "workspace:*",
"dotenv": "16.4.7",
"husky": "9.1.7",
"is-ci": "4.1.0",
"lint-staged": "15.2.11",
"lodash": "4.17.21",
"semantic-release": "24.2.0",
"syncpack": "13.0.0",
"tsup": "8.3.5",
"turbo": "2.3.3",
"typescript": "5.7.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"pnpm": {
"patchedDependencies": {
"@semantic-release/commit-analyzer@13.0.0": "patches/@semantic-release__commit-analyzer@13.0.0.patch"
},
"overrides": {
"@typescript-eslint/typescript-estree": "^8.16.0",
"micromatch": "4.0.8",
"nanoid@^3.0.0": "^3.3.8"
}
}
}