-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.74 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
{
"name": "ziggurat",
"version": "0.3.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"release": "release-it",
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"test:functional": "pnpm test:functional:redis && pnpm test:functional:memcache && pnpm test:functional:sqlite",
"test:functional:redis": "pnpm --filter @ziggurat-cache/redis test:functional",
"test:functional:memcache": "pnpm --filter @ziggurat-cache/memcache test:functional",
"test:functional:sqlite": "pnpm --filter @ziggurat-cache/sqlite test:functional",
"security:audit": "pnpm audit --prod",
"security:secrets": "gitleaks detect --no-banner",
"security": "pnpm security:audit && pnpm security:secrets"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@release-it/conventional-changelog": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"lefthook": "^2.1.10",
"prettier": "^3.9.5",
"release-it": "^21.0.1",
"release-it-pnpm": "^4.6.6",
"tsup": "^8.5.1",
"turbo": "^2.10.8",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@11.10.0",
"engines": {
"node": ">=22.13"
},
"pnpm": {
"overrides": {
"@conventional-changelog/git-client": ">=3.1.2"
}
}
}