-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.46 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
{
"name": "@clerk/cli-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run --filter @clerk/cli-core build",
"dev": "bun run --cwd packages/cli-core dev",
"test": "bun test 'packages/cli-core/src/' 'packages/extras/src/' 'scripts/' --parallel --only-failures",
"test:e2e": "bun test 'test/e2e/' --retry 1 --parallel --only-failures",
"test:e2e:op": "bun run scripts/run-e2e-op.ts",
"e2e:refresh-fixtures": "bun run scripts/refresh-e2e-fixtures.ts",
"typecheck": "bun run --filter './packages/*' typecheck && tsc --noEmit -p scripts/tsconfig.json && tsc --noEmit -p test/e2e/tsconfig.json",
"lint": "bun run --filter './packages/*' lint && oxlint -c .oxlintrc.json scripts/ test/e2e/",
"format": "bun run --filter './packages/*' format && oxfmt --write scripts/ test/e2e/",
"format:check": "bun run --filter './packages/*' format:check && oxfmt --check scripts/ test/e2e/",
"check:patches": "bun run scripts/check-patches.ts",
"build:compile": "bun run --filter @clerk/cli-core build:compile",
"version-packages": "bun changeset version",
"version-packages:canary": "bun run scripts/snapshot.ts -- canary",
"version-packages:snapshot": "bun run scripts/snapshot.ts",
"release": "bun run scripts/releaser.ts",
"release:canary": "bun run scripts/releaser.ts --tag canary",
"release:snapshot": "bun run scripts/releaser.ts --tag snapshot",
"build:compile:all": "bun run scripts/build.ts",
"global:link": "bun link --cwd packages/cli-core",
"global:unlink": "bun unlink --cwd packages/cli-core",
"start": "bun run build:compile && ./packages/cli-core/dist/clerk",
"prepare": "git config core.hooksPath .hooks",
"load-env-profiles": "bun run scripts/load-env-profiles.ts"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@clerk/testing": "^2.0.33",
"@types/bun": "^1.3.14",
"@types/semver": "^7.7.1",
"nano-staged": "^1.0.2",
"oxfmt": "^0.56.0",
"oxlint": "^1.71.0",
"playwright": "^1.60.0",
"semver": "^7.8.5",
"typescript": "^6"
},
"nano-staged": {
"*.{ts,tsx,js,jsx}": [
"oxfmt --write --no-error-on-unmatched-pattern",
"oxlint -c .oxlintrc.json --no-error-on-unmatched-pattern"
],
"*.{md,json,css}": "oxfmt --write --no-error-on-unmatched-pattern"
},
"engines": {
"bun": ">=1.3.10"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}