-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "cachekit-ts-workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "CacheKit TypeScript SDK monorepo",
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"lint": "eslint packages/cachekit/src",
"lint:fix": "eslint packages/cachekit/src --fix",
"format": "prettier --write \"packages/cachekit/src/**/*.ts\"",
"format:check": "prettier --check \"packages/cachekit/src/**/*.ts\"",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules .turbo"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"turbo": "^2.9.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"cpu-features",
"protobufjs",
"ssh2"
],
"overrides": {
"protobufjs": ">=7.5.8",
"vite": ">=8.0.5",
"lodash": ">=4.18.0",
"flatted": ">=3.4.2",
"picomatch": ">=4.0.4",
"yaml": ">=2.8.3",
"postcss": ">=8.5.14"
}
}
}