-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.03 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.03 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
68
69
70
71
72
73
74
{
"name": "federal-register-monorepo",
"version": "0.3.1",
"author": "Aleksandr Beshkenadze <beshkenadze@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/beshkenadze/us-legal-tools.git"
},
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.5",
"@types/bun": "latest",
"@types/node": "^24.1.0",
"gh-pages": "^6.3.0",
"orval": "^7.10.0",
"swagger2openapi": "^7.0.8",
"turbo": "^2.5.5",
"typedoc": "^0.28.8",
"typedoc-github-theme": "^0.3.0",
"typedoc-plugin-markdown": "^4.8.0",
"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",
"docs:generate": "turbo run docs:generate",
"docs:build": "typedoc --options typedoc.monorepo.json",
"docs:serve": "bunx serve docs",
"docs:deploy": "gh-pages -d docs --dotfiles"
},
"workspaces": [
"packages/*"
]
}