-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.87 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.87 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
{
"name": "http-client-toolkit-monorepo",
"description": "HTTP client toolkit monorepo with pluggable caching, deduplication, and rate limiting",
"repository": {
"type": "git",
"url": "https://github.com/AllyMurray/http-client-toolkit.git"
},
"type": "module",
"private": true,
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test -- --coverage",
"test:build": "turbo run test:build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint -- --fix",
"pre-commit": "prettier --write . && turbo run lint test --filter=...[HEAD^1]",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dashboard": "node --experimental-strip-types packages/dashboard/examples/dev-server.ts",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean && rm -rf node_modules",
"prepare": "husky",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"author": {
"name": "Ally Murray",
"email": "allymurray88@gmail.com",
"organization": false
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/node": "20",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "4.3.1",
"husky": "9.1.7",
"prettier": "3.6.2",
"rimraf": "6.0.1",
"turbo": "^2.0.0",
"typescript": "5.8.3"
},
"pnpm": {
"overrides": {
"typescript": "5.8.3"
}
},
"engines": {
"node": ">= 20.0.0"
},
"license": "ISC",
"homepage": "https://github.com/AllyMurray/http-client-toolkit#readme",
"bugs": {
"url": "https://github.com/AllyMurray/http-client-toolkit/issues"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"workspaces": [
"packages/*"
]
}