-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "tetherai",
"private": true,
"engines": {
"node": ">=18.12.0",
"pnpm": ">=9.0.0"
},
"workspaces": [
"packages/*/*",
"examples/*"
],
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "pnpm run build:providers",
"build:providers": "pnpm run build:openai && pnpm run build:anthropic && pnpm run build:mistral && pnpm run build:grok && pnpm run build:local",
"build:openai": "cd packages/provider/openai && pnpm run build",
"build:anthropic": "cd packages/provider/anthropic && pnpm run build",
"build:mistral": "cd packages/provider/mistral && pnpm run build",
"build:grok": "cd packages/provider/grok && pnpm run build",
"build:local": "cd packages/provider/local && pnpm run build",
"dev:next": "pnpm run build && cd examples/nextjs && pnpm run dev",
"prelint": "pnpm run build",
"lint": "pnpm run lint:check",
"lint:check": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"clean": "rm -rf packages/provider/*/dist",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"typescript-eslint": "^8.7.0",
"eslint": "^9.14.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"globals": "^14.0.0",
"vitest": "^1.0.0",
"typescript": "^5.0.0"
}
}