-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.71 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.71 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
62
63
64
65
66
67
{
"name": "federal-register-monorepo",
"version": "0.3.1",
"author": "Akira Beshkenadze",
"repository": {
"type": "git",
"url": "git+https://github.com/beshkenadze/us-legal-tools.git"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@types/bun": "latest",
"@types/node": "^24.1.0",
"orval": "^7.10.0",
"playwright": "^1.54.1",
"swagger2openapi": "^7.0.8",
"turbo": "^2.5.5",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"bugs": {
"url": "https://github.com/beshkenadze/us-legal-tools/issues"
},
"description": "Monorepo containing Federal Register and eCFR SDKs with MCP servers",
"engines": {
"node": ">=22.0.0"
},
"homepage": "https://github.com/beshkenadze/us-legal-tools#readme",
"keywords": [
"ecfr",
"federal-register",
"federal",
"regulations",
"api",
"sdk",
"mcp",
"typescript",
"monorepo"
],
"license": "MIT",
"packageManager": "bun@1.2.19",
"private": true,
"scripts": {
"build": "turbo build",
"generate": "turbo generate",
"test": "turbo test",
"test:integration": "turbo test:integration",
"test:e2e": "turbo test:e2e",
"lint": "turbo lint",
"format": "turbo format",
"check": "turbo check",
"check:ci": "turbo check:ci",
"dev": "turbo dev",
"clean": "turbo clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write"
},
"workspaces": [
"packages/*"
]
}