-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"name": "routerly",
"version": "0.1.5",
"private": true,
"type": "module",
"license": "AGPL-3.0",
"description": "Self-hosted API gateway for LLMs with intelligent routing, cost tracking and multi-provider support",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=packages/shared && npm run build --workspace=packages/service && npm run build --workspace=packages/cli && npm run build --workspace=packages/dashboard",
"dev": "npm run dev --workspace=packages/service",
"test": "npm test --workspaces --if-present",
"lint": "eslint packages/*/src --ext .ts",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset tag",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"prettier": "^3.2.5",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}