-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.2 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.2 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
{
"name": "vorsteh-queue",
"license": "MIT",
"private": true,
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.28.2",
"author": {
"name": "Marcus Reinhardt",
"url": "https://github.com/noxify"
},
"scripts": {
"dev": "turbo dev --filter='@vorsteh-queue/*'",
"dev:docs": "turbo dev --filter docs",
"preview": "pnpm -F docs preview",
"build": "turbo build",
"build:docs": "turbo build --filter docs",
"build:pkg": "turbo build --filter='@vorsteh-queue/*' --filter=create-vorsteh-queue",
"clean": "git clean -xdf node_modules",
"clean:cache": "turbo clean:cache",
"clean:workspaces": "turbo clean",
"format": "turbo format --continue -- --cache --cache-location .cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location .cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location .cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location .cache/.eslintcache",
"lint:ws": "sherif",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo typecheck",
"deps:check": "pnpm outdated -r",
"deps:update": "pnpm update -i -L -r",
"test": "vitest",
"test:ui": "vitest --ui",
"test:core": "pnpm -F core test",
"test:drizzle": "pnpm -F adapter-drizzle test",
"test:prisma": "pnpm -F adapter-prisma test",
"test:kysely": "pnpm -F adapter-kysely test",
"cs": "changeset",
"ci:publish": "pnpm -F adapter-prisma prisma:generate && pnpm build:pkg && pnpm publish -r --access public --publish-branch main && pnpm changeset tag",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add ."
},
"devDependencies": {
"@changesets/cli": "2.29.8",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"@vorsteh-queue/prettier-config": "workspace:*",
"prettier": "^3.8.1",
"sherif": "1.10.0",
"turbo": "2.8.0",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"prettier": "@vorsteh-queue/prettier-config",
"pnpm": {
"overrides": {
"esbuild@<=0.24.2": ">=0.25.0",
"vite@>=6.0.0 <=6.3.5": "6.3.6"
}
}
}