-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.76 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "repoctl-workspace",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@12.3.4",
"description": "Source workspace for repoctl and Icebreaker's shared development packages",
"author": "ice breaker <hi@sonofmagic.top>",
"license": "MIT",
"homepage": "https://repoctl.icebreaker.top",
"repository": {
"type": "git",
"url": "git+https://github.com/sonofmagic/repoctl.git"
},
"bugs": {
"url": "https://github.com/sonofmagic/repoctl/issues"
},
"keywords": [
"repoctl",
"monorepo",
"pnpm",
"turborepo",
"typescript"
],
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"build": "turbo run build",
"tooling:build": "turbo run build --filter=@icebreakers/monorepo --filter=repoctl",
"dev": "turbo run dev --parallel",
"test": "node -e \"require('node:fs').mkdirSync('coverage/.tmp', { recursive: true })\" && pnpm check:no-tracked-build-artifacts && vitest run && pnpm test:types",
"test:packaged-doctor": "node scripts/smoke-packaged-doctor.mjs",
"test:worker-types": "node scripts/worker-types/index.mjs",
"test:dev": "node -e \"require('node:fs').mkdirSync('coverage/.tmp', { recursive: true })\" && pnpm check:no-tracked-build-artifacts && vitest",
"lint": "pnpm run tooling:build && turbo run lint",
"tsd": "turbo run tsd",
"test:types": "turbo run test:types",
"check:no-tracked-build-artifacts": "node ./scripts/check-no-tracked-build-artifacts.mjs",
"check:workflows": "node ./scripts/check-workflows.mjs",
"audit": "pnpm audit --audit-level=moderate",
"audit:fix": "pnpm audit --fix",
"cf-typegen": "pnpm --filter @icebreakers/client --filter @icebreakers/server run cf-typegen",
"cf-typegen:check": "pnpm --filter @icebreakers/client --filter @icebreakers/server run cf-typegen:check",
"typecheck": "turbo run typecheck",
"format": "eslint . --fix",
"validate": "pnpm run build && pnpm run lint && pnpm run typecheck && pnpm run tsd && pnpm run test",
"release": "pnpm change",
"version-packages": "pnpm version -r",
"publish-packages": "repo release stable publish",
"release:pre": "repo release pre publish",
"------": "--------------",
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"postinstall": "pnpm run build",
"commit": "commit",
"commitlint": "commitlint --edit",
"sync": "turbo run sync",
"inspector": "npx @eslint/config-inspector",
"build:inspector": "pnpm build && npx @eslint/config-inspector build",
"-------": "---------------",
"repo:init": "repo init",
"repo:new": "repo new",
"repo:check": "repo check",
"repo:doctor": "repo doctor",
"------simple": "--------------",
"pr:alpha": "repo release pre enter alpha",
"pr:beta": "repo release pre enter beta",
"pr:rc": "repo release pre enter rc",
"pr:next": "repo release pre enter next",
"pr:exit": "repo release pre exit",
"--------": "----------------"
},
"devDependencies": {
"@commitlint/cli": "^21.2.2",
"@eslint/config-inspector": "^3.4.1",
"@icebreakers/commitlint-config": "workspace:*",
"@icebreakers/eslint-config": "workspace:*",
"@icebreakers/monorepo": "workspace:*",
"@icebreakers/stylelint-config": "workspace:*",
"@types/node": "^26.5.1",
"@vitest/coverage-v8": "~5.0.0",
"eslint": "^10.10.0",
"execa": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^17.5.1",
"only-allow": "^1.2.2",
"repoctl": "workspace:*",
"stylelint": "^17.15.0",
"tailwindcss": "^4.3.3",
"tsd": "^0.33.0",
"tsdown": "0.23.0",
"turbo": "^2.10.12",
"typescript": "^6.0.3",
"vitest": "~5.0.0",
"yaml": "^2.9.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}